Jump to content

Help with PHP code to edit rows in MySQL


Recommended Posts

I've got website running happily using XAMPP 1.4.15

However, I desperately want to upgrade to the latest XAMP 1.6.1

The problem I'm having after the upgrade is with a php page that lets me edit users. I can add users ok but if I try to edit them, all the cells in that row end up empty. There's no error message which makes it difficult to diagnose.

At first, I thought the reason was due to the new XAMPP having MySQL 5.0.37. I upgraded XAMPP 1.4.15 to MySQL 5.0.37 and it still worked perfectly. There's something in XAMP 1.6.1 which isn't compatible with my php code. I even tried XAMP 1.6.1 with PHP 4.4.6 but I still had the same problem.

Please help

I've attached the PHP code + MySQL database in case anyone would be so kind as to take a look at it.

files2.zip

Link to comment
Share on other sites


Try this in the file adminpage_staff_edit.php

	$staff_first_name = addslashes(trim($_POST['staff_first_name']));
$staff_last_name = addslashes(trim($_POST['staff_last_name']));
$dept_id = addslashes(trim($_POST['dept_id']));
$staff_title = addslashes(trim($_POST['staff_title']));
$staff_email = addslashes(trim($_POST['staff_email']));
$staff_telephone = addslashes(trim($_POST['staff_telephone']));

if ( !empty($_POST['staff_image']) )

Let me know what happens.

Link to comment
Share on other sites

the entries aren't in the DB either

so they were deleted (assuming it was an EDIT & they existed before this process)

try mad_raven's suggestion, then will see...

Link to comment
Share on other sites

Sorry mad_raven you posted while I was replying to MtK so I've only just read your reply.

I tried your code and it works :)

Thank you so much.

Quick question, why did it work before in my old version of XAMPP? Is it due to modifications with the PHP scripting language?

Link to comment
Share on other sites

Sorry mad_raven you posted while I was replying to MtK so I've only just read your reply.

I tried your code and it works :)

Thank you so much.

Quick question, why did it work before in my old version of XAMPP? Is it due to modifications with the PHP scripting language?

A wild guess would be: $_POST,

but wait for mad_raven's answer...

Edited by MtK
Link to comment
Share on other sites

Sorry mad_raven you posted while I was replying to MtK so I've only just read your reply.

I tried your code and it works :)

Thank you so much.

Quick question, why did it work before in my old version of XAMPP? Is it due to modifications with the PHP scripting language?

There are two possible explainations.

1: register_globals has been turned off in your php.ini file.

2: The new version of XAMP turns it off when it runs.

The register_globals feature automatically registers form field as variables. If the feature is turned off then you need to access the submitted form fields using the $_GET and $_POST super globals.

Register_globals is turned off by default in the latest versions of php as it is a security risk having it turned on.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...