Jump to content

Variable in include() URL


Petsmacker

Recommended Posts

when you phase them through your script... im assuming your using a url to phase them or a form element..

 

Your Code:

<?php
$x_id=4;
include (mypage.php?var=$x_id);
?>

 

Try (With Form Elements):

<?php
$x_id=$_POST['form_element_name'];
include (mypage.php?var=$x_id);
?>

 

With URL's

<?php
$x_id=$_GET['variable_name'];
include (mypage.php?var=$x_id);
?>

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.