The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
Why does the followin code produce a SQL error if there is more than one request variable defined in the url?
PHP Code:
index.php?siteid=3?do=overview The code above functions properly when ONLY siteid is being sent, but once do=overview has been added, I get a SQL error because $tempval is being filled not only with the value of siteid, but "?do=overview" as well. What im trying to do is have the page first look at the siteid so it knows which set of records to pull from the table (currently, I have it coded where an empty $_REQUEST['siteid'] returns all records), then finally look at DO so it knows what action to perform/template to eval. Can someone please point me in the right direction? |
#2
|
||||
|
||||
![]()
if you have more than one var in the URL, it has to be formatted like this:
index.php?var1=foo&var2=somethingelse&var3=what that would result in $_REQUEST['var1'] == 'foo'; $_REQUEST['var2'] == 'somethingelse'; $_REQUEST['var3'] == 'what'; Also, for security reasons, make sure to either use the vBulletin function globalise() or to addslashes() anything that gets used in a query. If the value is a number, you can also do intval(). |
#3
|
||||
|
||||
![]()
Thank you VERY much Colin! I see exactly where I've been screwing up now
Could you please elaborate how/where I would include the globalise(), addslashes() or inval() functions? If im thinking correctly, since my siteid will always be an int, I change my code from $tempval = $_REQUEST['siteid']; to $tempval = intval($_REQUEST['siteid']); Correct? I would like to ask one more thing since im thinking about it... How can I stop the results from being sent to the template if the requested siteid is either non-numeric, or an unknown value? For example, if the user decided to try and send index.php?siteid=1000000000000 or index.php?siteid=thisisnotnumeric since the database dont (and never will) have a site id of 1000000000000 and thisisnotnumeric is a text value, currently, both follow through correctly, but no data is sent to the template because the siteid dont exist. I would prefer that the user is sent an error message instead of a blank template. Thanks again for your time on the initial question at hand! |
#4
|
||||
|
||||
![]()
I am writing this off the top of my head, so dont expect it to work. But it should give you a starting point:
PHP Code:
![]() //peace |
#5
|
||||
|
||||
![]()
Greatly appreciated, Revan! Will let ya know the results...as soon as I get caught up here at work..sigh.
![]() |
#6
|
||||
|
||||
![]()
ok, finally got around to testing your code Revan.
The results: If I enter a numeric siteid that exists, everything still works as expected. If I enter a numeric siteid that dont exist, it still spits out an empty template. If I enter a textual siteid, it still returns a SQL error: Database error in vBulletin 3.0.3: Invalid SQL: SELECT * FROM site_game_info WHERE siteid=ghj mysql error: Unknown column 'ghj' in 'where clause' mysql error number: 1054 Date: Thursday 11th of November 2004 01:41:39 PM Script: xxxxxx.com/forums/gameinfo.php?siteid=ghj Referer: Username: Fargo IP Address: 192.168.1.1 If you or anyone else has any suggestions, feel free to offer them. In the meantime, Ill keep attempting to figure it out as well. Theres gotta be an existing vbulletin page that does relatively the same thing...... [edit]ok, forumdisplay.php does about the same thing - returns an error if the forum id dont exist...time to do some research on that file...[/edit] |
#7
|
||||
|
||||
![]()
well, looks like vb uses verify_id() to check thread/forum id's and the sort. Having a look at functions.php, im finding that ive already gotten way over my head in something I know very little about...but I think I can figure it out - eventually :ermm:
|
#8
|
||||
|
||||
![]()
Once the siteid has been globailzed, you should then test it prior to running the SQL query...
eg: PHP Code:
|
#9
|
||||
|
||||
![]()
Thanks for the input, Natch. While I fully understand what your suggesting I do, could you fill in the blanks and let me know how I would verify that error checking works? Im pretty new at all this stuff, so im a bit ignorant yet
![]() |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|