vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   A complex error to my script (https://vborg.vbsupport.ru/showthread.php?t=72122)

TheMayhem 11-24-2004 02:12 AM

A complex error to my script
 
This is a registration script that I'm working on and I'm trying to test it on a fairly new mysql version but I'm getting this wonderful evil mysql error and was wondering what I could do to fix it. Anyways here is the sql error when executed.

And I've attached the file below.

BlueFire2k5 11-24-2004 03:58 AM

Quote:

Originally Posted by TheMayhem
This is a registration script that I'm working on and I'm trying to test it on a fairly new mysql version but I'm getting this wonderful evil mysql error and was wondering what I could do to fix it. Anyways here is the sql error when executed.

PHP Code:

Invalid SQLINSERT INTO user(username,email,password,joindate,usergroupid)
VALUES("Agroder","ilidercad@freemail.com","cc8965a7663a0fd1823537b4ee3140f5","1101269508","2")
mysql errorYou have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'user(username,email,password,joindate,usergroupid)
VALUES("Agro 

And I've attached the file below.


INSERT INTO `user` (`username`,`email`,`password`,`joindate`,`usergro upid`)

Should do the trick. Note that 'user' is a function of mysql, so it thinks you're calling that function instead of saying insert into that database.

Cheers.

TheMayhem 11-25-2004 12:39 AM

When i changed this...

I get this wonderful error :(

Parse error: parse error, unexpected T_STRING in /home/nodq/public_html/newuser2.php on line 240

BlueFire2k5 11-25-2004 03:58 AM

Quote:

Originally Posted by TheMayhem
When i changed this...

PHP Code:

$sql "INSERT INTO " TABLE_PREFIX "user("implode(','$names) . ")
VALUES("
implode(','$values) . ")"

to this

PHP Code:

INSERT INTO `user` (`username`,`email`,`password`,`joindate`,`usergroupid`) 

I get this wonderful error :(

Parse error: parse error, unexpected T_STRING in /home/nodq/public_html/newuser2.php on line 240

Err, you must not be a programmer. Sorry, I didn't know.

Here:

PHP Code:

$sql "INSERT INTO `" TABLE_PREFIX "user` ("implode(','$names) . ")
VALUES("
implode(','$values) . ")"



All times are GMT. The time now is 01:13 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01163 seconds
  • Memory Usage 1,732KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete