Skip to main content
Participant
July 29, 2006
Question

Building Registration Page

  • July 29, 2006
  • 1 reply
  • 236 views
I build the page and can view it properly from Dreamweaver, but when I upload the page, it shows blank.

It goes fine until I add the insert record behaviour.

Any ideas?

Thanks
This topic has been closed for replies.

1 reply

Inspiring
July 29, 2006
reidweb wrote:
> I build the page and can view it properly from Dreamweaver, but when I upload
> the page, it shows blank.

The most common reason for a PHP page to display blank is if the server
has display_errors turned off, and there's an error in the page. At a
quick glance, the PHP looks OK, but it would fail if you haven't
uploaded the Connections folder and its contents:

> <?php require_once('Connections/MineWorks.php'); ?>

You also need to correct the opening form tag:

> <form action=<?php echo
> $editFormAction; ?>"" method=POSTt" name=registration_informationn"
> id="registration_information">

Should be:

<form action="<?php echo
$editFormAction; ?>" method=POST" name=registration_information"
id="registration_information">

--
David Powers
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
Author, "Foundation PHP 5 for Flash" (friends of ED)
http://foundationphp.com/