Jump to content

wesman2232

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Everything posted by wesman2232

  1. Sorry for double post but I cant find the edit button. I have done these that PFM said in another topic the first 2 are true but on the third my dir is like "C:/AppServ\php5\ext" is that ok? I think I got the Windows Path set and I have restarted. Whats wrong? EDIT : wtf? theres a edit button on this post but not on my origional one T_T
  2. I am getting this error : Fatal error: Call to undefined function mssql_connect() when I try to run my scripts. I have done the this script. <?php if (function_exists('mssql_connect')){ echo "Okay, fn is there<br>------------------<br>"; } else { echo "Hmmm .. fn is not even there<br>------------------<br>"; } if(extension_loaded("mssql")) { echo "MSSQL is Loaded<br>"; } else { echo "MSSQL not loaded<br>"; } if(extension_loaded("msql")) { echo "MSQL is Loaded<br>"; } else { echo "MSQL not loaded<br>"; } echo '<br><br>'; $ext = get_loaded_extensions(); if(in_array('mssql', $ext)) echo 'u have mssql installed<br><br>'; else echo 'u do NOT have mssql installed<br><br>'; phpinfo(); ?> When I run this it says : Hmmm .. fn is not even there ------------------ MSSQL not loaded MSQL not loaded u do NOT have mssql installed I do have MSSQL installed and such. Can someone help me?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.