Click here to Skip to main content
15,885,435 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
QuestionNew Lang ? Pin
SRJ9226-Nov-09 13:52
SRJ9226-Nov-09 13:52 
AnswerRe: New Lang ? Pin
Eddy Vluggen27-Nov-09 1:07
professionalEddy Vluggen27-Nov-09 1:07 
AnswerRe: New Lang ? Pin
cjoki27-Nov-09 10:31
cjoki27-Nov-09 10:31 
AnswerRe: New Lang ? Pin
Marc Firth29-Nov-09 22:02
Marc Firth29-Nov-09 22:02 
AnswerRe: New Lang ? Pin
abushahin7-Dec-09 2:28
abushahin7-Dec-09 2:28 
AnswerRe: New Lang ? Pin
Dr.Walt Fair, PE14-Dec-09 14:44
professionalDr.Walt Fair, PE14-Dec-09 14:44 
Questionstr_replace vs hebrevc Pin
Quiltfish26-Nov-09 9:01
Quiltfish26-Nov-09 9:01 
AnswerRe: str_replace vs hebrevc Pin
fly90426-Nov-09 9:17
fly90426-Nov-09 9:17 
AnswerRe: str_replace vs hebrevc Pin
Luc Pattyn26-Nov-09 9:22
sitebuilderLuc Pattyn26-Nov-09 9:22 
GeneralRe: str_replace vs hebrevc Pin
Quiltfish26-Nov-09 9:39
Quiltfish26-Nov-09 9:39 
GeneralRe: str_replace vs hebrevc Pin
Luc Pattyn26-Nov-09 9:46
sitebuilderLuc Pattyn26-Nov-09 9:46 
GeneralRe: str_replace vs hebrevc Pin
Quiltfish26-Nov-09 9:58
Quiltfish26-Nov-09 9:58 
GeneralRe: str_replace vs hebrevc Pin
Luc Pattyn26-Nov-09 12:14
sitebuilderLuc Pattyn26-Nov-09 12:14 
QuestionHelp debug a php function with database and JOIN query. Pin
djkee24-Nov-09 20:10
djkee24-Nov-09 20:10 
AnswerRe: Help debug a php function with database and JOIN query. Pin
fly90424-Nov-09 21:25
fly90424-Nov-09 21:25 
GeneralRe: Help debug a php function with database and JOIN query. Pin
djkee24-Nov-09 21:40
djkee24-Nov-09 21:40 
GeneralRe: Help debug a php function with database and JOIN query. Pin
fly90424-Nov-09 21:44
fly90424-Nov-09 21:44 
GeneralRe: Help debug a php function with database and JOIN query. Pin
djkee24-Nov-09 22:13
djkee24-Nov-09 22:13 
GeneralRe: Help debug a php function with database and JOIN query. Pin
fly90424-Nov-09 22:42
fly90424-Nov-09 22:42 
GeneralRe: Help debug a php function with database and JOIN query. [modified] Pin
djkee25-Nov-09 0:04
djkee25-Nov-09 0:04 
GeneralRe: Help debug a php function with database and JOIN query. Pin
fly90425-Nov-09 0:08
fly90425-Nov-09 0:08 
GeneralRe: Help debug a php function with database and JOIN query. [modified] Pin
djkee25-Nov-09 0:30
djkee25-Nov-09 0:30 
Here is the function am_queries Smile | :)

function am_queries($db, $sql, $verboseErr=3, $cacheCmd=1, $cache_dir = './cache/') {
	global $cache_config;
	global $cache_page_time;
	global $numberOfQueries; // Global value that can be used at the bottom of a page to report the number queries used.

	$exempt = false; // Queries that modify the database are automatically exempt.  This flag, when changed to true, indicates that the query should not be cached

	// Let's see if this is an UPDATE, INSERT, etc and if so, not use the cache
	$checkOne = explode(' ', $sql, 2);
	if (strtoupper($checkOne[0])=='INSERT' || strtoupper($checkOne[0])=='UPDATE' || strtoupper($checkOne[0])=='CREATE' || strtoupper($checkOne[0])=='DROP' || strtoupper($checkOne[0])=='DELETE') {
		$exempt = true;
	}


These are the errors i get when trying to output the query.

Warning: Missing argument 2 for am_getlatestscores(), called in /home/myusername/public_html/cache/%%45^45E^45E480CD%%index.tpl.php on line 36 and defined in /home/myusername/public_html/includes/gamefunctions.php on line 491

Warning: Invalid argument supplied for foreach() in /home/myusername/public_html/cache/%%45^45E^45E480CD%%index.tpl.php on line 37


Thanks for helping me fly904 Big Grin | :-D

modified on Wednesday, November 25, 2009 2:39 PM

GeneralRe: Help debug a php function with database and JOIN query. Pin
cjoki25-Nov-09 10:29
cjoki25-Nov-09 10:29 
QuestionImage uploads to server with php and mySQL Pin
wartotojas24-Nov-09 8:17
wartotojas24-Nov-09 8:17 
Questionpost data missing after php parses raw post to post variable Pin
cjoki24-Nov-09 7:34
cjoki24-Nov-09 7:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.