|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||||
|
|||||
|
Problem With mysql!
Dear all,
I have a big problem with my PHP news scripts. I got the following error... Please help me... You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 My PHP version Mysql : MySQL 4.0.14 php Code:
Best regards, mmlug |
|
#2
|
|||
|
|||
|
RE: Problem With mysql!
if you uncomment the line that says
echo "<br>$query"; and run the script, what is the the query that is output? |
|
#3
|
|||
|
|||
|
RE: Problem With mysql!
Try and use your SQL query like this.
$query="SELECT title,news FROM news WHERE id='$id'"; Is this working???? |
|
#4
|
|||
|
|||
|
RE: Problem With mysql!
Try this on the second line...
replace include"config.php"; with this include("config.php"); |
|
#5
|
|||
|
|||
|
RE: RE: Problem With mysql!
Quote:
Yes, I got this error message .. Code:
SELECT title,news FROM news WHERE id= You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 best reagards, MMlug |
|
#6
|
|||
|
|||
|
RE: Problem With mysql!
It seems that value of $_GET['id'] is not set. Do you get it from a form or from url?
|
|
#7
|
|||||||||||
|
|||||||||||
|
RE: Problem With mysql!
Yes I hvae one form to post my news to myssql database. Could be here something wrong?
php Code:
postnews.php is like here : : php Code:
My view.php is like here php Code:
best reagrds, mmlug |
|
#8
|
|||
|
|||
|
RE: Problem With mysql!
Your problem lies in your form method.
The method is post, so that your $id variable will be stored in $_POST['id'] and not in $_GET['id']. btw: I don't see any element with id name in your form. You are not setting it at all! |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Database Help > Problem With mysql! |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|