Active Server Pages

Moderators: None (Apply to moderate this forum)
Number of threads: 1763
Number of posts: 4498

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Syntax error in INSERT INTO statement Posted by musicalbell on 19 Mar 2008 at 11:49 PM
I'm new to web design, only know how to use Dreamweaver. I tried to play with Connection string, Recordset, Insert Record and Binding. This is the error that I got when I tried to insert a record (submit a form) into my .mdb datbaase:

Script error detected at line 116.
Source line: MM_editCmd.Execute
Description: [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.

And this is my .asp file:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/connSongofsoul.asp" -->
<%
' *** Edit Operations: declare variables

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
  MM_editAction = MM_editAction & "?" & Request.QueryString
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "admin_life_addblog") Then

  MM_editConnection = MM_connSongofsoul_STRING
  MM_editTable = "Blogs"
  MM_editRedirectUrl = "life.asp"
  MM_fieldsStr  = "Title|value|Date|value|Time|value|BlogEntry|value"
  MM_columnsStr = "Title|',none,''|Date|',none,NULL|Time|',none,NULL|BlogEntry|',none,''"

  ' create the MM_fields and MM_columns arrays
  MM_fields = Split(MM_fieldsStr, "|")
  MM_columns = Split(MM_columnsStr, "|")
  
  ' set the form values
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
  Next

  ' append the query string to the redirect URL
  If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
      MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
    Else
      MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
    End If
  End If

End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it

Dim MM_tableValues
Dim MM_dbValues

If (CStr(Request("MM_insert")) <> "") Then

  ' create the sql insert statement
  MM_tableValues = ""
  MM_dbValues = ""
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_formVal = MM_fields(MM_i+1)
    MM_typeArray = Split(MM_columns(MM_i+1),",")
    MM_delim = MM_typeArray(0)
    If (MM_delim = "none") Then MM_delim = ""
    MM_altVal = MM_typeArray(1)
    If (MM_altVal = "none") Then MM_altVal = ""
    MM_emptyVal = MM_typeArray(2)
    If (MM_emptyVal = "none") Then MM_emptyVal = ""
    If (MM_formVal = "") Then
      MM_formVal = MM_emptyVal
    Else
      If (MM_altVal <> "") Then
        MM_formVal = MM_altVal
      ElseIf (MM_delim = "'") Then  ' escape quotes
        MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
      Else
        MM_formVal = MM_delim + MM_formVal + MM_delim
      End If
    End If
    If (MM_i <> LBound(MM_fields)) Then
      MM_tableValues = MM_tableValues & ","
      MM_dbValues = MM_dbValues & ","
    End If
    MM_tableValues = MM_tableValues & MM_columns(MM_i)
    MM_dbValues = MM_dbValues & MM_formVal
  Next
  MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

  If (Not MM_abortEdit) Then
    ' execute the insert
    Set MM_editCmd = Server.CreateObject("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_editConnection
    MM_editCmd.CommandText = MM_editQuery
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close

    If (MM_editRedirectUrl <> "") Then
      Response.Redirect(MM_editRedirectUrl)
    End If
  End If

End If
%>
<html>
<head>
<title>Song of Soul - Life_Admin Add Blog</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
@import url("font.css");
-->
</style>
</head>

<body bgcolor="#333333" text="#CCCCCC" link="#FF00FF" vlink="#FF00FF" alink="#FF0000">
<div align="center"><span class="Font"><font color="#FF0000" face="ChopinScript"><img src="bigtitledeco.jpg" width="150" height="38"> 
  Song of Soul - <a href="life.asp">Life</a><img src="bigtitledeco.jpg" width="150" height="38"></font></span><br>
  <font color="#FFFFFF" size="+3" face="ChopinScript"> </font> 
  <p><font color="#FFFFFF" size="+3" face="ChopinScript">= Exposure of the Inner 
    Me =</font></p>
  <p><font color="#FFFFFF" size="+1">+ Add Blog Entry+</font></p>
  <form action="<%=MM_editAction%>" method="POST" name="admin_life_addblog" id="admin_life_addblog">
    <table width="70%" border="1">
      <tr> 
        <td><table width="95%" border="0" align="center">
            <tr> 
              <td width="18%">Title:</td>
              <td width="82%"><input name="Title" type="text" id="Title"></td>
            </tr>
            <tr> 
              <td>Date/Time:</td>
              <td><input name="Date" type="text" id="Date"> &nbsp; <input name="Time" type="text" id="Time"></td>
            </tr>
            <tr> 
              <td colspan="2">Entry:</td>
            </tr>
            <tr> 
              <td colspan="2"><textarea name="BlogEntry" cols="100" rows="10" id="BlogEntry"></textarea></td>
            </tr>
          </table></td>
      </tr>
      <tr> 
        <td><div align="left"> 
            <input name="postButton" type="submit" id="postButton" value="Post">
            &nbsp; 
            <input name="blankButton" type="reset" id="blankButton" value="Blank">
          </div></td>
      </tr>
    </table>
    <input type="hidden" name="MM_insert" value="admin_life_addblog">
  </form>
  <p><font color="#FFFFFF"></font></p>
  <p><font color="#FFFFFF"></font></p>
  <p>&nbsp;</p>
</div>
</body>
</html>


I've bold the statement in line 116.

P.s: After inserting the data into database, I should be re-directed to another .asp page.
Report
Re: Syntax error in INSERT INTO statement Posted by Flakes on 23 Mar 2008 at 11:00 PM
Do a response.write to see what the sql looks like :

Hide the .execute line for the time being.


If (Not MM_abortEdit) Then
    ' execute the insert
    Set MM_editCmd = Server.CreateObject("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_editConnection
    MM_editCmd.CommandText = MM_editQuery

Response.write "sql="&MM_editQuery&"<br/>"

    'MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close

    If (MM_editRedirectUrl <> "") Then
      Response.Redirect(MM_editRedirectUrl)
    End If
  End If

Report
Re: Syntax error in INSERT INTO statement Posted by shm_talha on 7 Aug 2009 at 12:14 PM
Hi,
I had tried this its working i m not getting any error.
but its not inserting any record to my access database.
how can i solve this problem?
Report
Re: Syntax error in INSERT INTO statement Posted by shm_talha on 7 Aug 2009 at 12:49 PM
Hi,
Talha here. i m new in web designing.

i had tried this but it is not inserting any record in my access database.
how can i solve this problem??

<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/conn_info.asp" -->
<%
' *** Edit Operations: declare variables

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
  MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "form2") Then

  MM_editConnection = MM_conn_info_STRING
  MM_editTable = "[Coaching Centers]"
  MM_editRedirectUrl = "thankyoucoaching.asp"
  MM_fieldsStr  = "Accept|value|Address|value|availablelabs|value|BuildingStatus|value|BuildingStructure|value|Campuses|value|Cell|value|CenterName|value|Commerce|value|ComputerScience|value|ContactPerson|value|EducationalInvironment|value|Email|value|FreeOffer|value|HomeEconomics|value|Humanities|value|Location|value|Medium|value|OfferedLevels|value|OtherInfo|value|PerMedical|value|Phone|value|PreEngineering|value|StudentRatio|value|URL|value|WebNecessary|value"
  MM_columnsStr = "Accept|none,1,0|Address|',none,''|AvailableLabs|',none,''|BuildingStatus|',none,''|BuildingStructure|',none,''|Campuses|',none,''|Cell|',none,''|CenterName|',none,''|Commerce|none,1,0|ComputerScience|none,1,0|ContactPerson|',none,''|EducationalInvironment|',none,''|Email|',none,''|FreeOffer|',none,''|HomeEconomics|none,1,0|Humanities|none,1,0|Location|',none,''|Medium|',none,''|OfferedLevels|',none,''|OtherInfo|',none,''|Per-Medical|none,1,0|Phone|',none,''|Pre-Engineering|none,1,0|StudentRatio|',none,''|URL|',none,''|WebNecessary|',none,''"

  ' create the MM_fields and MM_columns arrays
  MM_fields = Split(MM_fieldsStr, "|")
  MM_columns = Split(MM_columnsStr, "|")
  
  ' set the form values
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
  Next

  ' append the query string to the redirect URL
  If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
      MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
    Else
      MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
    End If
  End If

End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it

Dim MM_tableValues
Dim MM_dbValues

If (CStr(Request("MM_insert")) <> "") Then

  ' create the sql insert statement
  MM_tableValues = ""
  MM_dbValues = ""
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_formVal = MM_fields(MM_i+1)
    MM_typeArray = Split(MM_columns(MM_i+1),",")
    MM_delim = MM_typeArray(0)
    If (MM_delim = "none") Then MM_delim = ""
    MM_altVal = MM_typeArray(1)
    If (MM_altVal = "none") Then MM_altVal = ""
    MM_emptyVal = MM_typeArray(2)
    If (MM_emptyVal = "none") Then MM_emptyVal = ""
    If (MM_formVal = "") Then
      MM_formVal = MM_emptyVal
    Else
      If (MM_altVal <> "") Then
        MM_formVal = MM_altVal
      ElseIf (MM_delim = "'") Then  ' escape quotes
        MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
      Else
        MM_formVal = MM_delim + MM_formVal + MM_delim
      End If
    End If
    If (MM_i <> LBound(MM_fields)) Then
      MM_tableValues = MM_tableValues & ","
      MM_dbValues = MM_dbValues & ","
    End If
    MM_tableValues = MM_tableValues & MM_columns(MM_i)
    MM_dbValues = MM_dbValues & MM_formVal
  Next
  MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

  If (Not MM_abortEdit) Then
    ' execute the insert
    Set MM_editCmd = Server.CreateObject("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_editConnection
    MM_editCmd.CommandText = MM_editQuery

    Response.write "sql="&MM_editQuery&"<br/>"

    'MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close

    If (MM_editRedirectUrl <> "") Then
      Response.Redirect(MM_editRedirectUrl)
    End If
  End If

End If
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--#include file="inclheads1st.htm"-->
<title>Karachi Schools</title>
</head>

<!--#include file="inclbodytag.html"-->
<table width="975" border="0" class="innerbkg">
  <tr>
    <td align="center">
    <table width="955" border="0">
      <tr>
        <td colspan="5"><!--#include file="benner.htm"--></td>
      </tr>
      <tr>
        <td colspan="5"><!--#include file="toplinks.htm"--></td>
      </tr>
      <tr>
        <td colspan="5">&nbsp;</td>
        </tr>
      <tr>
        <td width="150" align="center" valign="top" class="addhaedding"><p>Advertisements</p>
          <!--#include file="leftbuttons.htm"--></td>
        <td width="10">&nbsp;</td>
        <td width="620" valign="top"><table width="100%" border="0" cellspacing="0" class="maincelllayout">
          <tr>
            <td width="71%" class="welcomehaedding">Add Your Coaching Center</td>
            <td width="29%">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="2" valign="top" class="pagelinks">Coaching Information Form: </td>
          </tr>
          <tr>
            <td colspan="2">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="2"><form name="form1" method="post" action="">
              <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="27%">Center Name: </td>
                  <td width="73%">&nbsp;</td>
                </tr>
                <tr>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                </tr>
                <tr>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                </tr>
              </table>
            </form></td>
          </tr>
          <tr>
            <td colspan="2">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="2" class="innerbkg">&nbsp;</td>
            </tr>
          <tr>
            <td colspan="2" valign="top">&nbsp;
              <form method="POST" action="<%=MM_editAction%>" name="form2">
                <table align="center">
                  <tr valign="baseline">
                    <td nowrap align="right">Accept:</td>
                    <td>
                      <input type="checkbox" name="Accept" value=1 >
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Address:</td>
                    <td>
                      <input type="text" name="Address" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">AvailableLabs:</td>
                    <td><input name="availablelabs" type="text" id="availablelabs"></td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">BuildingStatus:</td>
                    <td>
                      <input type="text" name="BuildingStatus" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">BuildingStructure:</td>
                    <td>
                      <input type="text" name="BuildingStructure" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Campuses:</td>
                    <td>
                      <input type="text" name="Campuses" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Cell:</td>
                    <td>
                      <input type="text" name="Cell" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">CenterName:</td>
                    <td>
                      <input type="text" name="CenterName" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Commerce:</td>
                    <td>
                      <input type="checkbox" name="Commerce" value=1 >
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">ComputerScience:</td>
                    <td>
                      <input type="checkbox" name="ComputerScience" value=1 >
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">ContactPerson:</td>
                    <td>
                      <input type="text" name="ContactPerson" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">EducationalInvironment:</td>
                    <td>
                      <input type="text" name="EducationalInvironment" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Email:</td>
                    <td>
                      <input type="text" name="Email" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">FreeOffer:</td>
                    <td>
                      <input type="text" name="FreeOffer" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">HomeEconomics:</td>
                    <td>
                      <input type="checkbox" name="HomeEconomics" value=1 >
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Humanities:</td>
                    <td>
                      <input type="checkbox" name="Humanities" value=1 >
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td colspan="2" align="right" nowrap>&nbsp;                    </td>
                    </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Location:</td>
                    <td>
                      <input type="text" name="Location" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Medium:</td>
                    <td>
                      <input type="text" name="Medium" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">OfferedLevels:</td>
                    <td>
                      <input type="text" name="OfferedLevels" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">OtherInfo:</td>
                    <td>
                      <input type="text" name="OtherInfo" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Per-Medical:</td>
                    <td>
                      <input type="checkbox" name="PerMedical" value=1 >
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Phone:</td>
                    <td>
                      <input type="text" name="Phone" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">Pre-Engineering:</td>
                    <td>
                      <input type="checkbox" name="PreEngineering" value=1 >
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">StudentRatio:</td>
                    <td>
                      <input type="text" name="StudentRatio" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">URL:</td>
                    <td>
                      <input type="text" name="URL" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">WebNecessary:</td>
                    <td>
                      <input type="text" name="WebNecessary" value="" size="32">
                    </td>
                  </tr>
                  <tr valign="baseline">
                    <td nowrap align="right">&nbsp;</td>
                    <td>
                      <input type="submit" value="Insert record">
                    </td>
                  </tr>
                </table>
                <input type="hidden" name="MM_insert" value="form2">
              </form>
              <p>&nbsp;</p></td>
            </tr>
        </table></td>
        <td width="10">&nbsp;</td>
        <td width="150" align="left" valign="top"><table width="147" height="29%" border="0" class="addhaedding" align="center">
          <tr>
            <td><!--#include file="inclcoachingright.html"-->&nbsp;</td>
          </tr>
          <tr align="center">
            <td>&nbsp;<!--#include file="inclnews.html"--></td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
          </tr>
          
          
        </table></td>
      </tr>

      <tr>
        <td colspan="5"></td>
      </tr>
      <tr>
        <td colspan="5"><!--#include file="inclbottom.htm"-->&nbsp;</td>
      </tr>
    </table></td>
  </tr>
</table>
</body>
</html>



Report
Re: Syntax error in INSERT INTO statement Posted by kristy85 on 18 Nov 2009 at 12:21 AM
Hi Talha...

Could you be more specific about it..
like what error message you got.

http://www.websitedesignerschennai.com/
Report
Re: Syntax error in INSERT INTO statement Posted by shm_talha on 19 Nov 2009 at 6:30 AM
hi,
actually i had tried what u told, the is not inserting any data to my access databese..

the was desplaying the form and when i submite it it shows the next page where i had redirect it but if i query my entry it does'nt show any thing..

please reply..

thanks & regards,
Shaikh Talha
shaikh.talha3@gmail.com
Report
Re: Syntax error in INSERT INTO statement Posted by seomayuri on 31 Jan 2010 at 10:55 PM
Hey friends

I tried but not get good result and i need best result in this topics..please reply us

Reg
Web Design India | Web Design Company
Report
Re: Syntax error in INSERT INTO statement Posted by globalkiran on 20 Mar 2010 at 12:02 PM
I added this script and it is working fine
Thank you verymuch.

G.Kiran


web design company chennai
, web design india,
dental software,
tirupati balaji darshan, ooty
Report
Re: Syntax error in INSERT INTO statement Posted by Logics on 24 Jan 2012 at 3:50 AM
I have tried this script working well for me.

Web Design Company
Report
Re: Syntax error in INSERT INTO statement Posted by ascentlws on 11 Aug 2012 at 10:05 AM
me also tried this script. its working well
Report
Re: Syntax error in INSERT INTO statement Posted by ascentlws on 11 Aug 2012 at 10:08 AM
me also tried. it's working well
Report
Re: Syntax error in INSERT INTO statement Posted by emilly on 6 Sept 2012 at 1:20 AM
well this code now working great
Report
Re: Syntax error in INSERT INTO statement Posted by emilly on 6 Sept 2012 at 1:22 AM
well this code now working great
Report
Re: Syntax error in INSERT INTO statement Posted by ayishabanu on 20 Mar 2013 at 4:45 AM
I tried the coding..I too have the same problem while designing my website..Now i got cleared my doubt..

Thanks,
Ayishabanu
Web Design Chennai | Web Designing Company
Report
Re: Syntax error in INSERT INTO statement Posted by ayishabanu on 20 Mar 2013 at 4:48 AM
I tried the coding..I too have the same problem while designing my website..Now i got cleared my doubt..

Thanks,
Ayishabanu
Web Design Chennai | Web Designing Company



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.