stalled executing script (DreamWeaver MX PHP)

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
kendall
Forum Regular
Posts: 852
Joined: Tue Jul 30, 2002 10:21 am
Location: Trinidad, West Indies
Contact:

stalled executing script (DreamWeaver MX PHP)

Post by kendall »

Hello,

I have a DreamweaverMX made script that inserts records into a database

In trying to insert a record the record is inserted ( i can check via mysql phpadmin program) yet the page still acks like its executing!!

Its not even timing out

i cant understand what this problem can be can anyone tell me what do i need to look for as the script's goal is being acheive but it just isnt redirecting to a 'success page' which is a master detail page

Kendall
User avatar
mrvanjohnson
Forum Contributor
Posts: 137
Joined: Wed May 28, 2003 11:38 am
Location: San Diego, CA

Post by mrvanjohnson »

Posting some of your code would help us help you :wink:
User avatar
m3mn0n
PHP Evangelist
Posts: 3548
Joined: Tue Aug 13, 2002 3:35 pm
Location: Calgary, Canada

Post by m3mn0n »

Remove all html headers, at the top of the page add:

Code: Select all

<?php
Header ("Location: confirmationpage.php");
?>
Post Reply