Jump to content

I Have Error for add new recort to ms-access


msafvati

Recommended Posts

my script is:

<?php

if(!strlen(trim($_GET['id'])))

{

echo "please enter book id";

die();

}

$query ="insert into t1 values("

$query = $query.$_GET['id']."',";

$query = $query."'".$_GET['name']."',";

$query = $query."'".$_GET['wr']."',";

$query = $query."'".$_GET['pub']."',";

$query = $query."'".$_GET['zam']."',";

");

echo $query;

$connectionstring = odbc_connect("lib", "", "");

$result = odbc_do($connectionstring, $query);

odbc_close($connectionstring);

?>

 

 

warning is :

Parse error: syntax error, unexpected T_VARIABLE in C:\Documents and Settings\Administrator\My Documents\nm3.php on line 8

 

please guid me

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.