TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 04-21-2008, 04:35 PM   #1 (permalink)
The Contributor
 
Evulness's Avatar
 
Join Date: Apr 2008
Location: Tampa, FL
Posts: 65
Thanks: 6
Evulness is on a distinguished road
Default query question

If sending a query. do you NEED quotes or back ticks? ' or ` ?

aka...
Code:
$query = "
        CREATE TABLE IF NOT EXISTS 'users' (
        'id' INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
        'username' VARCHAR( 255 ) NOT NULL ,
        'password' VARCHAR( 255 ) NOT NULL ,
        'email' TEXT NOT NULL ,
        'ip' VARCHAR( 16 ) NOT NULL ,
        'banned' VARCHAR( 5 ) NOT NULL DEFAULT 'n',
        'level' INT( 1 ) NOT NULL DEFAULT '1'
        );
        ";

mysql_query($query);
I'm trying to use this query via an install script. so that when i'm done on my test server, i can just upload everything, run my install script, and when its installed, delete the installer, so nothing can be changed that way....

my test server is a windows box at home, running WAMP
BUT, i ran into issues with backticks on the linux server i was going to demo my cms on... the admin told me i would need quotes, not back ticks...
he also said that windows treats backticks as quotes.
is that true?
if so...
do i even NEED the quotes or backticks, because i've seen many querys without them. or is it personal preference... something to help seperate the different lines?

just curious, because so far, i've kept with the backticks... untill i ran into this issue... using typical phpmyadmin query copy/paste to make sure the query is correct.
__________________
"Knowledge is power. Abuse it."~Evulness
My portfolio: www.evularts.com
Send a message via AIM to Evulness
Evulness is offline  
Reply With Quote
Old 04-21-2008, 05:24 PM   #2 (permalink)
The Acquainted
 
wGEric's Avatar
 
Join Date: Nov 2007
Posts: 166
Thanks: 0
wGEric is on a distinguished road
Default

You don't need either of those for columns. It's best not to use them. Back ticks are MySQL specific.
__________________
Eric
wGEric is offline  
Reply With Quote
Old 04-21-2008, 05:39 PM   #3 (permalink)
The Acquainted
 
freenity's Avatar
 
Join Date: Feb 2008
Posts: 119
Thanks: 17
freenity is on a distinguished road
Default

backticks(`) must mark the field name and quotes (') must mark the data values(you don't need them on the install).
You can omit back ticks whenever your field names are not in conflict with mysql reserved words.
For example if you want to have a field called where you must write: `where` varchar(100) not null......
but if you write
where varchar(100).. it will throw an error.
__________________
http://feudal-times.net - My PBB Game
http://gwphp.feudal-times.net - My Blog "Gaming With PHP"
freenity is offline  
Reply With Quote
Old 04-21-2008, 05:50 PM   #4 (permalink)
The Contributor
 
Evulness's Avatar
 
Join Date: Apr 2008
Location: Tampa, FL
Posts: 65
Thanks: 6
Evulness is on a distinguished road
Default

goootcha.... see i thought i remember reading ticks were only needed if you were doing a query in phpmyadmin.

just wanted to clarify. I wanted to make sure, that way, windows or linux, my db class would work.

seems to be doing fine :)

Thanks guys.
__________________
"Knowledge is power. Abuse it."~Evulness
My portfolio: www.evularts.com
Send a message via AIM to Evulness
Evulness is offline  
Reply With Quote
Old 04-21-2008, 07:46 PM   #5 (permalink)
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

Ticks mark a user defined entity, I would use them. It prevents errors like this
Code:
SELECT * FROM from WHERE join = '1';
That will generate a syntax error since from and join are both commands. This, however, will run without error
Code:
SELECT * FROM `from` WHERE `join` = '1';
It also makes the code easier to read.
__________________

Village Idiot is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 03:38 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design