Ben Dunlap wrote:
You can use http://us.php.net/mysql_real_escape_string to escape the
input.
[8<]
You should prep your data for insertion into the data by using a tool
that formats it strictly for the database. In the ops case
mysql_real_escape_string() is the correct tool for the job.
Wha
Hi,
Is there a possibility that if there is no font installed on client
side somehow browser finds it and redirect that font form server to
client machine. For example: I have site that use Microsoft font and
that font is not available on Linux distributions. So when u open page
in FF on some Linu
On Tue, 2009-07-28 at 12:07 +0200, Dušan Novaković wrote:
> Hi,
>
> Is there a possibility that if there is no font installed on client
> side somehow browser finds it and redirect that font form server to
> client machine. For example: I have site that use Microsoft font and
> that font is not a
Normally on a newsgroup you will have to give more information if you
want people to respond. Most people don't simply want to read your code
and figure out what you are finding wrong. You don't even say what the
problem is. You are probably getting some kind of response to your code.
Also, lo
I need to take this:
$pastDays = strtotime("-30 days");
$past_day = date("d", $pastDays);
$past_month = date("m", $pastDays);
$past_year =date("y", $pastDays);
And make it into one var to compare to a db field that is formatted like
00/00/00
--
PHP General Mailing List (http://www.php
On Tue, 2009-07-28 at 09:32 -0400, Miller, Terion wrote:
> I need to take this:
>
>$pastDays = strtotime("-30 days");
>
>
>
> $past_day = date("d", $pastDays);
>
> $past_month = date("m", $pastDays);
>
> $past_year =date("y", $pastDays);
>
>
> And make it into one var to compare to a db
Why not this:
$pastDate = date("d/m/y", strtotime("-30 days"));
""Miller, Terion"" escreveu na mensagem
news:c6946809.4183%kmille...@springfi.gannett.com...
I need to take this:
$pastDays = strtotime("-30 days");
$past_day = date("d", $pastDays);
$past_month = date("m", $pastDays);
$p
On Tue, Jul 28, 2009 at 6:32 AM, Miller,
Terion wrote:
> I need to take this:
>
> Â $pastDays = strtotime("-30 days");
>
>
>
> $past_day = date("d", $pastDays);
>
> $past_month = date("m", $pastDays);
>
> $past_year =date("y", $pastDays);
>
>
> And make it into one var to compare to a db field tha
On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
$pastDays = strtotime("-30 days");
$date = date("d/m/y", $pastDays);
Well I tried and got no results from my query and I know there results with
date ranges in the last 30 days, I basically need to count backward from now()
30 days I thought strt
From: Ashley Sheridan
> On Tue, 2009-07-28 at 09:32 -0400, Miller, Terion wrote:
>> I need to take this:
>>
>>$pastDays = strtotime("-30 days");
>>
>>
>>
>> $past_day = date("d", $pastDays);
>>
>> $past_month = date("m", $pastDays);
>>
>> $past_year =date("y", $pastDays);
>>
>>
>> And m
On Tue, 2009-07-28 at 09:42 -0400, Miller, Terion wrote:
>
>
> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
>
> $pastDays = strtotime("-30 days");
> $date = date("d/m/y", $pastDays);
>
> Well I tried and got no results from my query and I know there results with
> date ranges in the last 30 d
On 7/28/09 8:41 AM, "Bob McConnell" wrote:
From: Ashley Sheridan
> On Tue, 2009-07-28 at 09:32 -0400, Miller, Terion wrote:
>> I need to take this:
>>
>>$pastDays = strtotime("-30 days");
>>
>>
>>
>> $past_day = date("d", $pastDays);
>>
>> $past_month = date("m", $pastDays);
>>
>> $past_ye
2009/7/28 Dušan Novaković :
> Hi,
>
> Is there a possibility that if there is no font installed on client
> side somehow browser finds it and redirect that font form server to
> client machine. For example: I have site that use Microsoft font and
> that font is not available on Linux distributions.
On Tue, 2009-07-28 at 09:41 -0400, Bob McConnell wrote:
> From: Ashley Sheridan
> > On Tue, 2009-07-28 at 09:32 -0400, Miller, Terion wrote:
> >> I need to take this:
> >>
> >>$pastDays = strtotime("-30 days");
> >>
> >>
> >>
> >> $past_day = date("d", $pastDays);
> >>
> >> $past_month = d
On 7/28/09 8:44 AM, "Ashley Sheridan" wrote:
On Tue, 2009-07-28 at 09:42 -0400, Miller, Terion wrote:
>
>
> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
>
> $pastDays = strtotime("-30 days");
> $date = date("d/m/y", $pastDays);
>
> Well I tried and got no results from my query and I know ther
On Tue, 2009-07-28 at 06:46 -0700, Miller, Terion wrote:
>
>
> On 7/28/09 8:44 AM, "Ashley Sheridan" wrote:
>
> On Tue, 2009-07-28 at 09:42 -0400, Miller, Terion wrote:
> >
> >
> > On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
> >
> > $pastDays = strtotime("-30 days");
> > $date = date("d/m/y"
On Tue, Jul 28, 2009 at 9:46 AM, Miller,
Terion wrote:
>
>
>
> On 7/28/09 8:44 AM, "Ashley Sheridan" wrote:
>
> On Tue, 2009-07-28 at 09:42 -0400, Miller, Terion wrote:
>>
>>
>> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
>>
>> $pastDays = strtotime("-30 days");
>> $date = date("d/m/y", $pastDay
On 7/28/09 8:52 AM, "Ashley Sheridan" wrote:
On Tue, 2009-07-28 at 06:46 -0700, Miller, Terion wrote:
On 7/28/09 8:44 AM, "Ashley Sheridan" wrote:
On Tue, 2009-07-28 at 09:42 -0400, Miller, Terion wrote:
>
>
> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
>
> $pastDays = strtotime("-30 da
> On Tue, 2009-07-28 at 09:42 -0400, Miller, Terion wrote:
> >
> >
> > On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
> >
> > $pastDays = strtotime("-30 days");
> > $date = date("d/m/y", $pastDays);
> >
> > Well I tried and got no results from my query and I know there results with
> > date ran
On Jul 28, 2009, at 9:55 AM, Miller, Terion wrote:
On 7/28/09 8:52 AM, "Ashley Sheridan"
wrote:
On Tue, 2009-07-28 at 06:46 -0700, Miller, Terion wrote:
On 7/28/09 8:44 AM, "Ashley Sheridan"
wrote:
On Tue, 2009-07-28 at 09:42 -0400, Miller, Terion wrote:
On 7/28/09 8:35 AM, "
This may be more of a MySQL question than PHP, but I'm hoping someone
can point me in the right direction. I have working code (below) that
pulls data from a particular category in our db. I'd like to be able
to pull data from multiple categories in the same db and place them on
the same
On Tue, Jul 28, 2009 at 10:11 AM, wrote:
> This may be more of a MySQL question than PHP, but I'm hoping someone
> can point me in the right direction. I have working code (below) that pulls
> data from a particular category in our db. I'd like to be able to pull data
> from multiple cate
Miller, Terion schrieb:
I need to take this:
$pastDays = strtotime("-30 days");
$past_day = date("d", $pastDays);
$past_month = date("m", $pastDays);
$past_year =date("y", $pastDays);
And make it into one var to compare to a db field that is formatted like
00/00/00
$result = date("
From: Miller, Terion
On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
> $pastDays = strtotime("-30 days");
> $date = date("d/m/y", $pastDays);
>
> Well I tried and got no results from my query and I know there
> results with date ranges in the last 30 days, I basically need
> to count backward from
<,snip>
>
You can also do this right within MySQL without needing to create a
variable. This should work:
$sql = "SELECT DISTINCT restaurants.ID, name, address, inDate FROM
restaurants, inspections WHERE restaurants.name != '' AND
datediff(curdate(),inspections.inDate)>=30 GROUP BY restaurants
On Tue, Jul 28, 2009 at 10:34 AM, Bob McConnell wrote:
> From: Miller, Terion
> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
>
>> $pastDays = strtotime("-30 days");
>> $date = date("d/m/y", $pastDays);
>>
>> Well I tried and got no results from my query and I know there
>> results with date ranges
On 7/28/09 9:40 AM, "Bastien Koert" wrote:
On Tue, Jul 28, 2009 at 10:34 AM, Bob McConnell wrote:
> From: Miller, Terion
> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
>
>> $pastDays = strtotime("-30 days");
>> $date = date("d/m/y", $pastDays);
>>
>> Well I tried and got no results from my qu
On Tue, Jul 28, 2009 at 10:40 AM, Miller,
Terion wrote:
>
>
>
> <,snip>
>>
>
> You can also do this right within MySQL without needing to create a
> variable. This should work:
> $sql = "SELECT DISTINCT restaurants.ID, name, address, inDate FROM
> restaurants, inspections WHERE restaurants.name !=
On Tue, Jul 28, 2009 at 10:43 AM, Miller,
Terion wrote:
>
>
>
> On 7/28/09 9:40 AM, "Bastien Koert" wrote:
>
> On Tue, Jul 28, 2009 at 10:34 AM, Bob McConnell wrote:
>> From: Miller, Terion
>> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
>>
>>> $pastDays = strtotime("-30 days");
>>> $date = date(
Dušan Novaković wrote:
> Hi,
>
> Is there a possibility that if there is no font installed on client
> side somehow browser finds it and redirect that font form server to
> client machine. For example: I have site that use Microsoft font and
> that font is not available on Linux distributions. So
Bastien Koert wrote:
> On Tue, Jul 28, 2009 at 10:43 AM, Miller,
> Terion wrote:
>>
>>
>> On 7/28/09 9:40 AM, "Bastien Koert" wrote:
>>
>> On Tue, Jul 28, 2009 at 10:34 AM, Bob McConnell wrote:
>>> From: Miller, Terion
>>> On 7/28/09 8:35 AM, "Ashley Sheridan" wrote:
>>>
$pastDays = strtotim
Okay I have to echo onto my reverse pub page this chunk of code that is for
generating the page in Quark, it has to echo as is...but I'm getting
errors--I've tried in brackets, in paraenthesis, double quotes, single
quotes etc:
echo "
@Normal=
@.LIST
Bold=
@.BODY=[S"",
".BODY"]<*J*h"Standard"*
Bastien Koert wrote:
> On Tue, Jul 28, 2009 at 10:11 AM, wrote:
>>This may be more of a MySQL question than PHP, but I'm hoping someone
>> can point me in the right direction. I have working code (below) that pulls
>> data from a particular category in our db. I'd like to be able to pull
> -Original Message-
> From: Miller, Terion [mailto:tmil...@springfi.gannett.com]
> Sent: 28 July 2009 17:06
>
> Okay I have to echo onto my reverse pub page this chunk of code that
> is for
> generating the page in Quark, it has to echo as is...but I'm getting
> errors--I've tried in brac
On 7/28/09 11:05 AM, "Miller, Terion" wrote:
echo "
@Normal=
@.LIST
Bold=
@.BODY=[S"",
".BODY"]<*J*h"Standard"*kn0*kt0*ra0*rb0*d0*p(0,7,0,10,0,0,G,"U.S.
English")Ps100t-2h100z9.4k0b0cKf"PoynterOSTextTwoNL-Roman">
@Normal=[S".BODY
",".BODY","Normal"]<>
@.GLANCE Hed
100K=[S"",""]<*L*h"Headl
Miller, Terion wrote:
>
>
> On 7/28/09 11:05 AM, "Miller, Terion" wrote:
>
>
> echo "
> @Normal=
> @.LIST
> Bold=
> @.BODY=[S"",
> ".BODY"]<*J*h"Standard"*kn0*kt0*ra0*rb0*d0*p(0,7,0,10,0,0,G,"U.S.
> English")Ps100t-2h100z9.4k0b0cKf"PoynterOSTextTwoNL-Roman">
> @Normal=[S".BODY
> ",".BODY",
Oh sorry, apparently that time it took the boss standing over me telling me to
try the single quotes again(pretty sure I had tried them-I may have caching
problems on my dumb computer) anyways so putting it in single quotes not double
worked like a charm.
On 7/28/09 11:52 AM, "Jim Lucas"
Hi gang,
I've been looking for a str_to_date (mysql) equivalent in PHP. I've
noticed that these are matching the description:
http://www.php.net/manual/en/datetime.createfromformat.php
http://www.php.net/manual/en/function.date-create-from-format.php
but I don't have PHP 5.3.0 installed in
Thodoris wrote:
> Hi gang,
>I've been looking for a str_to_date (mysql) equivalent in PHP. I've
> noticed that these are matching the description:
>
> http://www.php.net/manual/en/datetime.createfromformat.php
> http://www.php.net/manual/en/function.date-create-from-format.php
>
> but I don't
2009/7/28 Thodoris :
> Hi gang,
> I've been looking for a str_to_date (mysql) equivalent in PHP. I've
> noticed that these are matching the description:
>
> http://www.php.net/manual/en/datetime.createfromformat.php
> http://www.php.net/manual/en/function.date-create-from-format.php
>
> but I don
Richard S. Crawford wrote:
> 2009/7/28 Thodoris :
>> Hi gang,
>> I've been looking for a str_to_date (mysql) equivalent in PHP. I've
>> noticed that these are matching the description:
>>
>> http://www.php.net/manual/en/datetime.createfromformat.php
>> http://www.php.net/manual/en/function.date-c
2009/7/28 Thodoris :
Hi gang,
I've been looking for a str_to_date (mysql) equivalent in PHP. I've
noticed that these are matching the description:
http://www.php.net/manual/en/datetime.createfromformat.php
http://www.php.net/manual/en/function.date-create-from-format.php
but I don't have
On Tue, Jul 28, 2009 at 10:09 AM, Jim Lucas wrote:
> Richard S. Crawford wrote:
>> 2009/7/28 Thodoris :
>>> Hi gang,
>>> I've been looking for a str_to_date (mysql) equivalent in PHP. I've
>>> noticed that these are matching the description:
>>>
>>> http://www.php.net/manual/en/datetime.createfro
On Tue, 2009-07-28 at 20:10 +0300, Thodoris wrote:
> > 2009/7/28 Thodoris :
> >
> >> Hi gang,
> >> I've been looking for a str_to_date (mysql) equivalent in PHP. I've
> >> noticed that these are matching the description:
> >>
> >> http://www.php.net/manual/en/datetime.createfromformat.php
> >
On Tue, 2009-07-28 at 20:10 +0300, Thodoris wrote:
> 2009/7/28 Thodoris mailto:t...@kinetix.gr>>:
>
>> Hi gang,
>> I've been looking for a str_to_date (mysql) equivalent in PHP. I've
>> noticed that these are matching the description:
>>
>> http://www.php.net/manual/en/datetime.createfrom
Thodoris wrote:
>
>> 2009/7/28 Thodoris :
>>
>>> Hi gang,
>>> I've been looking for a str_to_date (mysql) equivalent in PHP. I've
>>> noticed that these are matching the description:
>>>
>>> http://www.php.net/manual/en/datetime.createfromformat.php
>>> http://www.php.net/manual/en/function.da
On Tue, 2009-07-28 at 20:38 +0300, Thodoris wrote:
> > On Tue, 2009-07-28 at 20:10 +0300, Thodoris wrote:
> >> > 2009/7/28 Thodoris mailto:t...@kinetix.gr>>:
> >> >
> >> >> Hi gang,
> >> >> I've been looking for a str_to_date (mysql) equivalent in PHP. I've
> >> >> noticed that these are match
Thodoris wrote:
2009/7/28 Thodoris :
Hi gang,
I've been looking for a str_to_date (mysql) equivalent in PHP. I've
noticed that these are matching the description:
http://www.php.net/manual/en/datetime.createfromformat.php
http://www.php.net/manual/en/function.date-create-from-fo
Well it does make sense if you leave in UK :-) . But I was asking about
how to change a day/month/year formated date (or a date in any format I
like) to mysql format. The basic problem is that I need to define the
format that the date is in.
Sorry if I didn't make that clear before.
>
> http://www.alistapart.com/articles/cssatten
> http://www.webdeveloper.com/forum/archive/index.php/t-37552.html
> http://home.tiscali.nl/developerscorner/fdc-varia/font-embedding.htm
> http://www.cameraontheroad.com/index.php?p=524
>
>
>
> --
> PHP General M
I found a php script to find all file types with a file-name formula and put
them into an array. I then wanted to echo this array (possibly with links to
the files).
I want my default page to look for and list all php files with
"survey_*.php", the asterisk being any number, so the results should
By the way, I was getting a PHP error with an unexpected ")" on line 47
($aryPhotos), so I added the two \\ before {survey*_.php and now the page
won't load, won't even display a PHP error.
On Tue, Jul 28, 2009 at 11:06 AM, Allen McCabe wrote:
> I found a php script to find all file types with
sono...@fannullone.us wrote:
> Hi Jim,
>
>> Take a look inside your money_format() function look for the problem.
>
> I apologize for replying too quickly.
>
> The money_format() function looks just like the one I had before, so
> that's fine.
>
> Upon closer inspection, I found a f
On Tue, 2009-07-28 at 08:52 -0700, Jim Lucas wrote:
> Dušan Novaković wrote:
> > Hi,
> >
> > Is there a possibility that if there is no font installed on client
> > side somehow browser finds it and redirect that font form server to
> > client machine. For example: I have site that use Microsoft f
Dušan Novaković wrote:
Hi,
Is there a possibility that if there is no font installed on client
side somehow browser finds it and redirect that font form server to
client machine. For example: I have site that use Microsoft font and
that font is not available on Linux distributions. So when u ope
Background: I'm converting a webapp from Visual FoxPro as a backend to
MySQL... However one part of our app (a system status checker) is
common code between the versions.
I've got the following function... In English (in case it's not
apparent), if the version of the app is 2.0 or higher, then use
From: Ashley Sheridan
> On Tue, 2009-07-28 at 08:52 -0700, Jim Lucas wrote:
>> Dušan Novaković wrote:
>> > Hi,
>> >
>> > Is there a possibility that if there is no font installed on client
>> > side somehow browser finds it and redirect that font form server to
>> > client machine. For example: I
On Tue, Jul 28, 2009 at 2:48 PM, Matt Neimeyer wrote:
> Background: I'm converting a webapp from Visual FoxPro as a backend to
> MySQL... However one part of our app (a system status checker) is
> common code between the versions.
>
> I've got the following function... In English (in case it's not
It's exactly what I would expect... The content of the row... But in
any case, what does changing the content of the { } branch have to do
with how the IF() itself is evaluated?
array(4) {
[0]=>
string(8) "CustName"
["config"]=>
string(8) "CustName"
[1]=>
string(11) "Sample Cust"
["v
Dear Forum Experts.
I have an already created PDF Document that has a Form Element in it that was
created with NITROPDF. But the problem is just that I need a way to pass value
or populate the Document Form Element with value store in a Session Variable
before the form is displayed to user.
Ca
On Tue, 2009-07-28 at 12:16 -0700, Dare Williams wrote:
> Dear Forum Experts.
>
> I have an already created PDF Document that has a Form Element in it that was
> created with NITROPDF. But the problem is just that I need a way to pass
> value or populate the Document Form Element with value stor
Dear Forum,
I have an already created PDF Document that has a Form Element in it that was
created with NITROPDF. But the problem is just that I need a way to pass value
or populate the Document Form Element with value store in a Session Variable
before the form is displayed to user.
There is a
On Tue, Jul 28, 2009 at 3:31 PM, Dare Williams wrote:
> Dear Forum,
>
> I have an already created PDF Document that has a Form Element in it that was
> created with NITROPDF. But the problem is just that I need a way to pass
> value or populate the Document Form Element with value store in a Sess
Well I was going along smoothly from this morningbut it came down to
having to change the field type to date in the mySQL..so now I have this
which returns a scraped value formatted like this 0/00/00 m/d/y
$inDate = $results[3][$i];
Which date function can I use to format for the db so that
In mySql you have date_format which I think´ll solve your problem.
""Miller, Terion"" escreveu na mensagem
news:c694bead.41f4%kmille...@springfi.gannett.com...
Well I was going along smoothly from this morningbut it came down to
having to change the field type to date in the mySQL..so now
Please, click "Reply All" so the list may benefit from our talking.
Read below for further information.
sono...@fannullone.us wrote:
> Jim,
>
>> if ( ( $results = mysql_query($SQL, $db) ) !== false ) {
>>
>> You want to have the inner portion processed then the comparison done.
>> Not the other
Ok so I got the
$inDate = strtotime($results[3][$i]);
Giving me the unix date now I am trying all the different date functions that
will put it in the -00-00 like sql stores it because I ran it with the unix
stamp and it just stored 00 in the db
Hoping something like this works?
$forma
OMG AND I FIGURED IT OUT MYSELF...dang I just may be learning some php..
On 7/28/09 3:02 PM, "Miller, Terion" wrote:
Ok so I got the
$inDate = strtotime($results[3][$i]);
Giving me the unix date now I am trying all the different date functions that
will put it in the -00-00 like sql store
Matt Neimeyer wrote:
> Background: I'm converting a webapp from Visual FoxPro as a backend to
> MySQL... However one part of our app (a system status checker) is
> common code between the versions.
>
> I've got the following function... In English (in case it's not
> apparent), if the version of t
On Tue, Jul 28, 2009 at 4:02 PM, Miller,
Terion wrote:
> Ok so I got the
> $inDate = strtotime($results[3][$i]);
>
> Giving me the unix date now I am trying all the different date functions that
> will put it in the -00-00 like sql stores it because I ran it with the
> unix stamp and it just
On 7/28/09 3:48 PM, "Bastien Koert" wrote:
On Tue, Jul 28, 2009 at 4:02 PM, Miller,
Terion wrote:
> Ok so I got the
> $inDate = strtotime($results[3][$i]);
>
> Giving me the unix date now I am trying all the different date functions that
> will put it in the -00-00 like sql stores it beca
On Jul 28, 2009, at 12:48 PM, Jim Lucas wrote:
';
echo '';
foreach ( $cats AS $cat ) {
echo ''.htmlspecialchars($cat).'';
}
echo '';
foreach ( $cats AS $cat ) {
echo '';
$cat = mysql_real_escape_string($cat, $db);
$SQL = "SELECT itemid,description,unitprice
On Jul 28, 2009, at 12:48 PM, Jim Lucas wrote:
';
echo '';
foreach ( $cats AS $cat ) {
echo ''.htmlspecialchars($cat).'';
}
echo '';
foreach ( $cats AS $cat ) {
echo '';
$cat = mysql_real_escape_string($cat, $db);
$SQL = "SELECT itemid,description,unitprice
Hey,
I'm using the PECL GeoIP module on php 5.2.10. When I look up an IP
address, the geoip_record_by_name() function is giving me a string
that contains "special" characters, such as the following:
'Portugal, 09, Vila Real De Santo António'
'Norway, 08, Ålesund'
'Portugal, 04, Vila Nova De Famal
sono...@fannullone.us wrote:
>
> On Jul 28, 2009, at 12:48 PM, Jim Lucas wrote:
>
>> > $item_list = "";
>> $cats = array('01100-01200-01300-06403', '01100-02201-01300-06403');
>>
>> echo '';
>> echo '';
>> foreach ( $cats AS $cat ) {
>> echo ''.htmlspecialchars($cat).'';
>> }
>> echo '';
>> f
. Sorry bout that
[HallMarc Websites]
__ Information from ESET Smart Security, version of virus signature
database 4286 (20090728) __
The message was checked by ESET Smart Security.
http://www.eset.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi gang:
I have a client who is looking for a "Message Board for Subscribers"
to be installed on his site -- one with a good admin. Any
recommendations?
Thanks,
tedd
--
---
http://sperling.com http://ancientstones.com http://earthstones.com
--
PHP General Mailing List (http://www.php.
Line in Program:
//connect to server and select database
//connect to server and select database
$mysqli = mysqli_connect("localhost", "jdoe", "doepass", "testdb");
//create and issue the query
$sql = "SELECT f_name, l_name FROM auth_users WHERE username =
'".$_POST["username"]."' AND pa
Ernie Kemp would like to recall the message, "Access Denied".
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Ernie Kemp wrote:
Line in Program:
//connect to server and select database
//connect to server and select database
$mysqli = mysqli_connect("localhost", "jdoe", "doepass", "testdb");
//create and issue the query
$sql = "SELECT f_name, l_name FROM auth_users WHERE username =
'".$_POST[
Please ignore.
Newbie error solved
Thanks
From: Ernie Kemp [mailto:ernie.k...@sympatico.ca]
Sent: July-28-09 9:34 PM
To: php-general@lists.php.net
Subject: [PHP] Access Denied
Line in Program:
//connect to server and select database
//connect to server and select database
$mysq
On Jul 28, 2009, at 4:38 PM, Jim Lucas wrote:
I saw your other email before sending. The problem with the way you
show you want it there is that each result set would have to be the
same
size. I'm going to assume that they won't be...
Well, they SHOULD be but you never know. Thanks for
Can something please show me to install Roadsend Compiler on Fedora 10.
Thank you,
J.K
83 matches
Mail list logo