Jump to content

Editing Variables Through Webfpage


josephbupe

Recommended Posts

Hi,

 

How can i edit a variable set in code through a webpage?

 

I have two such variable I always change in code, but I want to change them through a webpage, namely: $counter==5 and $perpage=10

 

if($counter==5) {
	 echo "</tr>\n<tr>\n<td colspn=2>  \n</tr>\n<tr>\n";
	$counter=0;
 }

 

and

 

//Number of items to display per page
$perpage = 10;
if(isset($_GET["page"]))
{
$page = intval($_GET["page"]);
}
else
{
$page = 1;
}

 

I will appreciate.

 

Joseph

Link to comment
https://forums.phpfreaks.com/topic/271581-editing-variables-through-webfpage/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.