phpmyadmin configuration problem : SOLVED
Moderator: General Moderators
- orangeapple
- Forum Commoner
- Posts: 70
- Joined: Tue Jan 06, 2004 1:24 pm
- Location: Geneva / Switzerland
phpmyadmin configuration problem : SOLVED
Hi there,
I have a big problem with my site host : the server had a big crash about a week ago. Now they seem to have identified the problem and reinstalled phpmyadmin but the variables don't pass from my html form to a php page. I recall that I had read something about a setting of phpmyadmin to solve this problem but just can't find that anymore in the documentation.
Your help would be highly appreciated.
Thanks !!!
I have a big problem with my site host : the server had a big crash about a week ago. Now they seem to have identified the problem and reinstalled phpmyadmin but the variables don't pass from my html form to a php page. I recall that I had read something about a setting of phpmyadmin to solve this problem but just can't find that anymore in the documentation.
Your help would be highly appreciated.
Thanks !!!
Last edited by orangeapple on Fri May 20, 2005 2:33 pm, edited 2 times in total.
I don't think this has anything to phpMyAdmin but with the server configuration.
how are you passing the variables between your pages?
on the recieving pages are you just doing
or
which php version was being used and is being used now?
how are you passing the variables between your pages?
on the recieving pages are you just doing
Code: Select all
$newVar = $previousPageVar;Code: Select all
$newVar = $_POST['previousPageVar'];
//or
$newVar = $_GET['previousPageVar'];
//or
$newVar = $_REQUEST['previousPageVar'];- orangeapple
- Forum Commoner
- Posts: 70
- Joined: Tue Jan 06, 2004 1:24 pm
- Location: Geneva / Switzerland
- orangeapple
- Forum Commoner
- Posts: 70
- Joined: Tue Jan 06, 2004 1:24 pm
- Location: Geneva / Switzerland
-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
giving any error messages you receive would help greatly
if you arent getting any add
to the top of your page
if you arent getting any add
Code: Select all
error_reporting(E_ALL):- orangeapple
- Forum Commoner
- Posts: 70
- Joined: Tue Jan 06, 2004 1:24 pm
- Location: Geneva / Switzerland