Jump to content

Help with function...


Recommended Posts

I'm writing a function that will gather and organise data into an array. For some reason I keep getting "syntax error, unexpected '=' " when testing it...

 

	function organise($d){
	while($$d._ROW = mysql_fetch_array($$d)){
	$$d._START[$$d._COUNTER] = $$d._ROW['start'];
	$$d._END[$$d._COUNTER] = $$d._ROW['end'];
	$$d._ANSWER[$$d._COUNTER] = $$d._ROW['answer'];
	$$d._COUNTER++;
	}
}

Link to comment
Share on other sites

But if I run that function multiple times with a different argument, I won't be able to use the variables I'm creating inside it because it will change each time...

 

Its not in the code that I've posted but I've declared them as global variables... the reason I used variable variables is because if I run organise ('ABC'); I need to be able to use $ABC_ROW later on...

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.