What's contained in $sql and $sql_ext ???
Stuart Felenstein wrote:
I'm using a product called dbqwiksite pro. PHP
generator for PHP - MySQL
The code seems to be working fine except in my search
page where I receive an "invalid query"
$result = mysql_query($sql . " " . $sql_ext . " limit
0,1")
or
Hi Gav
SuSE will work outta the box. Just make sure you've selected the
components and Yast will configure more or less everything to work
together before installing
cheers
Steve
Gavin Amm wrote:
I'd really like to find a Linux distro that is a LAMP system right out
of the box.
(Linux, Apache, M
Hi Shannon
you need to do something like
$sql = "SELECT user_id FROM table WHERE ..";
$res = mysql_query($sql) or die(mysql_error());
while ($uids = mysql_fetch_array($res))
{
$sql2 = "SELECT something FROM another_table WHERE user_id = $uids[0]";
..
whatever else you need to do
Hi Prabu
you need to add a few bits:
in the function:
function tes(){
vtes = theform.vtes.value; #added line
document.write('JavaScript');
window.location.replace('http://127.0.0.1/coba/coba.php?vtes=' + vtes);
#altered line
in the body:
and before the
may be a bit ott but should work
st
remove the comma after cadet.photo, ie
select cadet.relation2,cadet.photo FROM
HTH steve
Matthew Moldvan, Jr. wrote:
I would say try single quotes instead of double quotes ... let me know if
that works ...
Regards,
Matt.
- Original Message -
From: "Sean Smitz" <[EMAIL PROT
Hi Micella
You need to either slash-escape your insert query or use single quotes:
$query="insert into dene (day,start_time) values (\"2003.09.25\",\"22:30\") " ;
or
$query="insert into dene (day,start_time) values ('2003.09.25','22:30') " ;
steve
M|cella Erdem Efe wrote:
I am a new programm