Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Building Registration Page

New Here ,
Jul 29, 2006 Jul 29, 2006

Copy link to clipboard

Copied

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
TOPICS
Server side applications

Views

215
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jul 29, 2006 Jul 29, 2006

Copy link to clipboard

Copied

LATEST
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/

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines