Re: [PHP] Mysqli Extension

2013-08-19 Thread Lester Caine
Matijn Woudt wrote: apt-get install php5-mysql Just to elaborate on that ... php5-common and php5-cli does not include a number of modules that need to be loaded separately. Choosing one of the database modules is not the only thing that may need to be added to your list of additional instal

Re: [PHP] Mysqli Extension

2013-08-19 Thread Curtis Maurand
Matijn Woudt wrote: > On Mon, Aug 19, 2013 at 9:40 PM, Ashley Sheridan > wrote: > >> >> >> Matijn Woudt wrote: >> >On Mon, Aug 19, 2013 at 8:55 PM, Ashley Sheridan >> >wrote: >> > >> >> >> >> >> >> Curtis Maurand wrote: >> >> > >> >> > >> >> >Ethan Rosenberg wrote: >> >> >> Dear List - >> >> >

Re: [PHP] Mysqli Extension

2013-08-19 Thread Matijn Woudt
On Mon, Aug 19, 2013 at 9:40 PM, Ashley Sheridan wrote: > > > Matijn Woudt wrote: > >On Mon, Aug 19, 2013 at 8:55 PM, Ashley Sheridan > >wrote: > > > >> > >> > >> Curtis Maurand wrote: > >> > > >> > > >> >Ethan Rosenberg wrote: > >> >> Dear List - > >> >> > >> >> My > >> >mysqli extension seems

Re: [PHP] Mysqli Extension

2013-08-19 Thread Daniel P. Brown
On Aug 19, 2013 2:32 PM, "Ethan Rosenberg" wrote: > > Dear List - > > My mysqli extension seems to have gone away. > (REACTED) Remember: avoid putting passwords - especially for root users - on a public mailing list, which is also permanently archived. > echo "hello2"; > var_dump(function_ex

Re: [PHP] Mysqli Extension

2013-08-19 Thread Ashley Sheridan
Matijn Woudt wrote: >On Mon, Aug 19, 2013 at 8:55 PM, Ashley Sheridan >wrote: > >> >> >> Curtis Maurand wrote: >> > >> > >> >Ethan Rosenberg wrote: >> >> Dear List - >> >> >> >> My >> >mysqli extension seems to have gone away. >> >> >> >> $host = >> >'localhost'; >> >> $user = 'root'; >> >> $pa

Re: [PHP] Mysqli Extension

2013-08-19 Thread Matijn Woudt
On Mon, Aug 19, 2013 at 8:55 PM, Ashley Sheridan wrote: > > > Curtis Maurand wrote: > > > > > >Ethan Rosenberg wrote: > >> Dear List - > >> > >> My > >mysqli extension seems to have gone away. > >> > >> $host = > >'localhost'; > >> $user = 'root'; > >> $password = 'SdR3908'; > >> echo "hello2"; >

Re: [PHP] Mysqli Extension

2013-08-19 Thread Ashley Sheridan
Curtis Maurand wrote: > > >Ethan Rosenberg wrote: >> Dear List - >> >> My >mysqli extension seems to have gone away. >> >> $host = >'localhost'; >> $user = 'root'; >> $password = 'SdR3908'; >> echo "hello2"; >> >var_dump(function_exists('mysqli_connect'));// this returns boo(false) >> $db = 'S

Re: [PHP] Mysqli Extension

2013-08-19 Thread Curtis Maurand
Ethan Rosenberg wrote: > Dear List - > > My mysqli extension seems to have gone away. > > $host = 'localhost'; > $user = 'root'; > $password = 'SdR3908'; > echo "hello2"; > var_dump(function_exists('mysqli_connect'));// this returns boo(false) > $db = 'Store'; > $cxn = mysqli_connect($host,$use

Re: [PHP] Mysqli Extension

2013-08-19 Thread Matijn Woudt
On Mon, Aug 19, 2013 at 8:02 PM, Ethan Rosenberg < erosenb...@hygeiabiomedical.com> wrote: > Dear List - > > My mysqli extension seems to have gone away. > > $host = 'localhost'; > $user = 'root'; > $password = 'SdR3908'; > echo "hello2"; > var_dump(function_exists('**mysqli_connect'));// this ret

[PHP] Mysqli Extension

2013-08-19 Thread Ethan Rosenberg
Dear List - My mysqli extension seems to have gone away. $host = 'localhost'; $user = 'root'; $password = 'SdR3908'; echo "hello2"; var_dump(function_exists('mysqli_connect'));// this returns boo(false) $db = 'Store'; $cxn = mysqli_connect($host,$user,$password,$db); I tried to reinstall -