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

PHP Fatal error

Guest
Jun 08, 2007 Jun 08, 2007

Copy link to clipboard

Copied

I'm trying to work with CS3 and am designing a form to submit some data to the database and when I attempt to look at the page I get the following error:

PHP Fatal error: Call to undefined function mysql_pconnect()

What should I do? I don't have control over the server... so I really cant make configuration changes...

all I get is a blank page the second I add a recordset...

Help!!!

-Warren
TOPICS
Server side applications

Views

213
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
Guide ,
Jun 08, 2007 Jun 08, 2007

Copy link to clipboard

Copied

LATEST
AFAIK, establishing a persistent connection to a MySQL server (that´s what pconnect stands for) will only work on servers where PHP has been installed as Apache "module" --- seems that the remote server has it installed as CGI.

Guess you´ll need to resort to using a regular non-persistent connection, means "mysql_connect()"

works better ?

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