Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

get multiple variables with url

i am triying to acess multiple variables from another skript. i am doing it with this method because include dont work for me and cant figure out why:

skript 1

$QT = $_POST["QT"];
  header("location: ../main/Skript2.php/?number=$QT");



skript2

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

<?php
$QT = $_GET['number'];
echo $QT;
?>

thanks to @rauwitt

just with one variable its working great, but is there a way to store with the same method multiple in the url?

i tried it like this but it doesnt work

header("location: ../main/ProcessOrder.php/?number=$QT/url=$var2");

thanklss

>Solution :

header("location: ../main/ProcessOrder.php?number=$QT&url=$var2");
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading