In article <[EMAIL PROTECTED]>, Septic Flesh wrote:
> I wanna buy a book from amazon . . .but don't know which one..
> Do you know where I will find examples of shopping carts ? (which book ?)
>
"Creating Dynamic Web Pages Using PHP and MySQL" by David Tansley.
--
Rgds
Ralph
--
PHP General
In article <[EMAIL PROTECTED]>, Jennifer Downey wrote:
>
>
>
you've got the "Name" attribute attached to the wrong INPUT element:
> if($guess = = $number) {
>
incorrect syntax here. that should be:
if ($guess == $number) {
better would be:
if (trim($guess) == $number {
this will
2 matches
Mail list logo