In message <[EMAIL PROTECTED]>, Marc Henri <[EMAIL PROTECTED]> writes >I'd like to know why my first test was not working >(cause it is similar to a listing in a book)
because the quotes around variable1 are different? >and if I >really need (it's related) to use the '.' between each >line of my command? The '.' is simply the PHP way of joining bits of string together to make a larger string. You could write the string all on one line if you wished. > >Another problem is that the table is created with the >name $num and is not replaced like I want by its >value. How can I solve this other problem? Use double quotes around the "SELECT..., not the single quotes that you have now. -- Pete Clark http://www.hotcosta.com http://www.spanishholidaybookings.com Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
