|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
This is probably a really simple question, but I keep getting an unexpected T_Variable when I try and run this code. I'm running apache 1.3, with the latest versions of MySQL and PHP.
<html> <body> <?php $db = mysql_connect("curriculum", "root", ""); mysql_select_db(cardb, $db); $result = mysql_query("SELECT * FROM careers, keywords WHERE careers.pg_id = keywords.pg_id AND keywords.keyword = $search", $db); $row=mysql_fetch_array($result); print("<p><a href="$row["link"]">$row["title"]</a></p>"); print("<p>$row["des"]</p>"); ?> </body> </html> I'm not sure what the problem is and I've been trying for a couple of days to fix it. It's a simple search engine I'm making for a school website. |
|
#2
|
||||
|
||||
|
Re: probably really simple
Quote:
Try changing this to: PHP Code:
Hope it helps, Mac
__________________
easier is relative |
|
#3
|
|||
|
|||
|
First off, go here and learn how to post a descriptive subject title, probably really simple is unacceptable.
You had a PHP question so this should be posted only to PHP forum instead. There's no such thing as too simple question that you can't ask in PHP forum. |
|
#4
|
||||
|
||||
|
This will cause you problems:
PHP Code:
PHP Code:
|
|
#5
|
|||
|
|||
|
Thanks for your help, It's now working after a fashion. I was kind of under the impression that this forum was for beginners, of which I am. And now there's a new problem, the form box I'm using isn't sending the data to PHP or PHP isn't picking it up. But I'll take that to the HTML forum, I think.
|
|
#6
|
||||
|
||||
|
How are you trying to access the variables that have been posted from the form? If you have register_globals set to off in the php.ini file, then you have to use the $_POST & $_GET variables to access these variable.
|
![]() |
| Viewing: Dev Shed Forums > Other > Beginner Programming > probably really simple |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|