Where webform keep posted data? I looked att all database tables and I can find only text fields posted. People uploaded also images but there is no link or image itselv in database. How to retrive all data from the forms subited? How webform save images?
Is there any alternative to webform in Drupal 7?
I have try code display total user for drupal6, but it is not work in drupal7.
Please advise the code to put in a block for show total number of user.
$result = db_query("SELECT COUNT(0) AS num FROM {users} u");
while ($blog = db_result($result)) {
print '<ul><li>'.$blog->num .'</li></ul>';
}
print '</table>';
and have error as follows.
Fatal error: Call to undefined function db_result() in F:\AppServ\www\drupal7\modules\php\php.module(74) : eval()'d code on line 3
I'm having trouble searching for the answer to this question. I'm surprised it's not in the installation instructions. Or if it is, it's well hidden.
Here's the situation... the person holding the reins of the DNS records wants me to develop the website first before he changes the A record of DNS to point to the IP address of the web server.
I edited .htaccess to set the base directory to ~username. This works. It let's me develop the Drupal 7 website fine.