ven re-compile. What am I doing
wrong. Is there a registry like componant to Solaris I need to change
to show the old version is gone? Any help out there for me?
Kelly
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
(/usr/apache/libexec/libphp5.so)
libthread.so.1 => /usr/lib/libthread.so.1
Kelly
> Kelly wrote:
> > I have installed PHP 5.0.3 on an Intel box running Apache 1.3 with a
> > Solaris 9 x86 OS. When I try to restart the Apache server I get this
> > error:
&g
Well I think you have the variable problem fixed. Worked like a charm.
But I think I spoke to soon about the mail feature. I cannot get it to
mail a form. Could I have not turned something else on?
Kelly
> Kelly wrote:
> > I found other things about this online doing google. I
;,
[EMAIL PROTECTED]
Can someone please help me figure this out? I am desperate!! I am also
at my wits end. I have been fighting with this for a week.
Kelly
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I'm trying to get dreamweaver mx working with php/mysql and a remote server.
My remote server is named localhost. How can I change it's name? Is it as simple as
change the host value for the user's login? I've tried several things to no avail.
TIA,
Kelly
mysql doesn't support subquerys - is there a workaround for this kind of
scenario?
TIA,
Kelly
Here is how the numbers work for file permissions.
644 = "rw-r--r--"
0 --- no access
1 --x execute
2 -w- write
3 -wx write and execute
4 r-- read
5 r-x read and execute
6 rw- read and write
7 rwx read write execute
-Original Message-
From: DIKSHA NEEL [mailto:[EMAIL PROTECTED]]
S
elling and Thomson.
You can also try my website out, it only has some basics on it right
now, I haven't had any time lately to write any more information but I
will shortly.
www.theouterphere.com
Kelly
-Original Message-
From: DIKSHA NEEL [mailto:[EMAIL PROTECTED]]
Sent: February
If you only want one email do a select distinct email that way only one
email address will be brought back from you query.
>$query=mysql_query("select company, Email from members");
$query = mysql_query("select company, distinct(Email) from members");
if you want a good book for this check out M
"]) || $_POST["gamt_$i"] == null){
}
Kelly
-Original Message-
From: Robert E. Harvey, M.D. [mailto:[EMAIL PROTECTED]]
Sent: February 19, 2003 6:54 PM
To: php
Subject: [PHP] Simple ereg question
Hello folks,
I'd like to verify input data transferred from a form a
look like this
SELECT * from Table order by column_name Limit 100
This will bring back 100 rows that are order by the column you specify.
Kelly
-Original Message-
From: Tyler Durdin [mailto:[EMAIL PROTECTED]]
Sent: February 20, 2003 10:45 AM
To: [EMAIL PROTECTED]
Subject: [PHP] php and
+$',$_POST[vari]) || $_POST[vari] == null)
{
echo " continue This is a valid number";
}
else
{
die("Non-numeric data entered in grass entry field(s).");
}
Kelly
-Original Message-
From: Robert E. Harvey, M.D. [mailto:[EMAIL PROTECTED]]
Sent: Fe
Use strrpos() which will find the last occurrence of something in a
string then just use substr() to pull everything from that point on in
the string.
Kelly
-Original Message-
From: Gregory Heinrichs [mailto:[EMAIL PROTECTED]]
Sent: February 20, 2003 5:13 PM
To: [EMAIL PROTECTED
xyz
If I wanted to have the output grouped on any of the fields, how would I go about
doing it?
TIA
Kelly
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
address, $subjectline, $formcontent, $headers);
header("location: http://www.website.com <http://www.website.com/> ");
Thanks
Kelly
tart();
$HTTP_SESSION_VARS['bla']="bla"
or do you have to
session_start();
session_register('bla');
$HTTP_SESSION_VARS['bla']="bla"
And:
Does using something header("Location:bla.php") screw up sessions somehow, even if you
start the destina
r to
upload an image to that same directory.
Is there any way, when the upload window is closed, to force a reload of the other
page, so the dynamic pop-up reflects the recent upload?
Thanks in advance,
Kelly
, and it literally does nothing.
If I try something like:
$bashoutput=shell_exec('bash makethesite.sh username pathtoputfiles pathtogetfiles');
echo $bashoutput;
I get nothing output, and the script doesn't execute.
Any ideas?
Kelly
akethesite.sh param1 param2 param3');
echo $bashresult;
Doesn't execute the script, nothing in $bashresult
Kelly
- Original Message -
From: "Robert Cummings" <[EMAIL PROTECTED]>
To: "Kelly Meeks" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sen
group?
Thanks in advance,
Kelly
t I do, I can't seem to pass any
variables to the script. Not just this script, either, I can't pass vars to any php
script executing at the shell level.
I'm running 4.03 (please, no digs about the security hole(s), long, long story...) is
there anything in the php.ini file I need to change?
TIA,
Kelly
mple:
'If register_globals = on, the url http://www.example.com/test.php?id=3 will produce
$id.'
I can only assume with register globals being set to off, the reverse of this would be
true. If so, how do I get the value of id in that case?
Kelly
Hi, I have 1 primary array called $item containing 20 values each of whose
value is part of the name of 20 other arrays containing various number of
values. How can I cycle through the primary $item array using a foreach and
within that do a for on each of the 20 secondary arrays dynamically
inse
Thanks that did it!
"Martin Towell" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Try adding curly braces around the var name, like this:
>
> for($i=0; $i
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.p
Thanks for the examples Zak! I got it working.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Can I pass the ftp transfer mode in a string like ...
$filetype = "FTP_ASCII";
$upload = ftp_fput($conid, $dfile, $sfile, $filetype);
I ask as when I do I get the following error message ...
Warning: ftp_fput() expects parameter 4 to be long, string given
If I replace $filetype with the text F
Thanks guys, I was unaware having quotes around it would make a difference.
Works fine once I removed the quotes.
"John Kelly" <> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Can I pass the ftp transfer mode in a string like ...
>
> $
How do you create a user/host configuration that will allow you to connect to mysql
other than via localhost?
Thanks in advance,
Kelly
e syntax above work?
TIA
Kelly
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Is there any way to get a php script to grap the output from a perl script?
Can you reverse that and have a perl script grab the output from a php script?
Kelly
m assuming that I could then explode that variable using the pipe as the seperator
text?
Kelly
ipt? Does it have to be in perl, and if so, how would you
code it? Or could it be a php file?
Sorry for the exceedingly off-topic post, I'm obviously new to the sysadmin side of
things...
Kelly
Do you mean the data doesn't transfer over to your database?
"Phil Schwarzmann" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Whenever I use a mult-line textfield, the data inside doesn't transfer
> over. But single-line textfields work just fine.
>
> how d
I'm creating an upload form for users to upload files to my server. but I
don't want them to overwrite existing files if they try to upload using the
same file name...
THE FOLLOWING SCRIPT WORKS PERFECTLY
if (file_exists("uploads/documents/".$file_name)==TRUE) {
die ("File already exists")
I don't get an error message...but the page doesn't automatically forward to
the redirected url.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
LOL...thanks ed...figured it out last night...
don't need to do a file_exists
since i capture file_name in my db...I do a query before the insert to see
if the file_name entered in the form, matches any of the file_names stored
in mySQL. if the count of the record set > 0 then the file exists, a
not on auto increment...thats the point!
why would you need to get the #6 back anyway...
this is the fundementals of database theory... chances are the database is
using this autoincrement field as the PRIMARY KEY...in which case no
duplicates are allowed..
In terms of records...your id#7 has be
Hi Al...
I use Macromedia Dreamweaver UltraDev with PHAkt plugin (you'll have to add
it from the dreamweaver ultradev extensions @ www.macromedia.com/exchange
Macromedia UltraDev is available for 30 day free trial at their site
it has brilliant php support..you barely have to know a stitch
Howdy,
I know there has to be a way to grab output of an url on another site? Let's say you
wanted to get the output of yahoo.com (just for example)?
Is there any way you can stick that into a variable, and then manipulate it?
Thanks,
Kelly
If I had this information stored in a database field,
">
how could I assign it to a variable and output it?
I've gone thru the info on eval() @ php.net, but it's not getting thru my skull very
well. I keep getting errors I can't correct.
Can anyone give me some pointers?
Any good tutorials
...
Now I want to delete everything in the src section of an image tag, so I'm trying this:
$fixedfile=ereg_replace("src=\".*\">","src=\"\"", $fixedfile);
but this doesn't work.
What am I doing wrong?
Kelly
igured a simple shell script to copy
the files (or symobolic links to these files) from a master directory to the
appropriate directory for the customer would make the most sense.
Am I barking up the wrong tree, or does this make sense?
Thanks in advance,
Kelly
're actually trying to
write a parser, I think you might do well to read up on how other parsers
work (like, using a stack). Anyway, don't do that, use an existing XML
parser.. unless you are on a learning quest.. then, by all means!
--
Kelly Hallman
//Ultrafancy/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
requirement...?
Maybe I'm not understanding the problem, but why not just use something
like $myarray = preg_split('/[\r\n]+/', $textarea) ?
--
Kelly Hallman
//Ultrafancy/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ually parse it. To simply pull one or two values
out of the file, a regex still might be the quickest/dirtiest..
If you do want to move forward testing parsers and stuff, make yourself a
valid XML file to test with, so that is not the issue...worry about fixing
malformed XML later with the pro
in a day
(86400 * days) + timestamp
--
Kelly Hallman
//Ultrafancy/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
actly where it found it last time.
So, naturally, you need to advance the character position by at least one
to find subsequent occurences. This isn't a workaround. You had the bug.
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ng very little of any, if you're
working with more than a basic, one-page script.
Even if you are (gulp) generating your HTML output within functions, it
seems better to be returning that back to some level where there are only
a couple of echo/prints necessary..
Think output layer...
t it's a little unweildy.. especially if you want to change
the range later (changing the array may not be so bad, but then you've
got to figure out how many iterations your loops must do, etc).
How about something like this:
$hstart = 7; $hend = 19; $interval = 15;
for($h=$hstart; $h
earch criteria it comes back with no hits. How should this be
> done? Do I have to encrypt the password somehow?
You probably need to use ldap_compare() to verify the password. Most LDAP
servers won't send back the password field contents. Hope that helps!
--
Kelly Hallman
// Ultrafancy
e showy and 2) feared the example
would start losing it's demonstrative value with extra functionality.
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ally be dropped from PHP? Plans to improve it?
Thanks in advance for any help or pointers!!
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Wed, 26 Nov 2003, Rasmus Lerdorf wrote:
> On Wed, 26 Nov 2003, Kelly Hallman wrote:
> > I am aware that the PHP documentation says that the Java extension is
> > experimental. I am also aware that people say the ISAPI version does not
> > work well and that running PHP
filter($data,$allowed) {
foreach($data as $k => $v) {
if (in_array($k,$allowed)) { $r[$k] = $v; } } return $r; }
Putting it all together:
$allow_keys = array("action", "page", "custtype", "gender");
$new_vars = array("page" => 3, "act
line, but as a CGI by the webserver.
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
close a string with '' it will be treated as a literal.
You may also consider "object{$objectnumber}" if you need to avoid
ambiguities with the rest of your string. I personally think it's a good
habit to use the curlies anyway, but I'm sure that's a matter of d
something I'm doing, or is this an IE problem?
This is the workaround I use for the IE/https download problems.
Not sure if it's the same problem, but let me know if this helps:
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ions would determine if the logged-in user had
adequate permission, and redirect them if not. That way, you can control
this behavior from a central location--you don't want to have to go
through each page of your app and change a URL.
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing
surprised I didn't see this mentioned.. Have you tried:
header("Location: http://url.redirect/\n\n";); exit; // ?
The browser may be particular about the headers. When you add the two
newlines to the end, it makes it look like the end of the headers.
It's good practi
idn't want are identical in
your post, it was hard to tell what you were trying to do, but...
I think this is what you want..
ereg_replace("(\.)([0-9])","\\1\\2",$string);
(minus the last decimal point, missing from your original string)
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
variable as an int also appears to result in the desired behavior:
(int)"NANC" < 0 == false
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
r script...
$is_secure = ($_SERVER['SERVER_PORT']==443) ? true : false ;
If you decide to use SERVER_PORT to sense secure connections, this logic
would work well. It only depends on knowing the port you consider secure.
For typical https, that would be port 443. Enjoy!
--
Kelly
single place. Also, it includes defaults that don't need to be specified
with each call, as you'd need to do with preg_replace() alone.
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ave input like (),
but it would work as expected.
Many tricky regex problems can be solved by lookaheads. There is also a
negative lookahead (?!pattern) ... also note that this is an advanced
regex feature and won't it work on many regex engines not based on PCRE.
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
don't mostly all contain PHP code.
Same performance hit if you were naming plain HTML files as .php...
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ould set the Content-type header like so:
header("Content-type: image/jpeg");
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
code (SquirrelMail) uses it in one place,
but not another. What say you, PHP gurus? Gotta love the syntactic sugar!
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
it (it's the SQL queries
themselves that are not always portable, so you have to solve that).
If you've never looked at PEAR, the DB class is a good start.
Also, despite all it's features, it's quite fast!
--
Kelly Hallman
// Ultrafancy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello, I am having trouble getting .php3 files to work in php4.0.4pl1.
.php files work fine, but my browser wants to download the .php3 file.
Here are the relevant lines from httpd.conf:
AddType application/x-httpd-php .php .php3
AddType application/x-httpd-php-source .phps
I'm at a bit of a l
It was the latter, which was very strange, but the problem seems to have
gone away now. How odd.
Thanks for your prompt help!! Much appreciated.
Hunter
"Hoover, Josh" wrote:
>
> Do you mean that index.php3 does not work when you access that page as the index for
>the directory (http://youri
Hmm okay that works, for most .php3 files, but for some reason,
does not work with index.php3. Very strange...
H
"Hoover, Josh" wrote:
>
> Try doing this in your httpd.conf (replacing what you have now):
>
> AddType application/x-httpd-php .php
> AddType application/x-httpd-php .php3
> AddTyp
ail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
Kelly
303-444-1671
Boulder, Colorado
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additi
gt; ---
> John Parker, Senior Design Engineer
> Ph: 816/676-6419
> Fax: 785/989-3556
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTE
add.
>
> thanks,
>
> evan
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
Kelly
303-4
AIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
Kelly
303-444-1671
Boulder, Colorado
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
to automatic update the document become active after all the related
> document become active.
>
> Can you please give me some idea how to start? I really don't have any
> idea. Please teach me.
>
> Thanks
> Wendy
>
Kelly
303-444-1671
Boulder, Colorado
s
> http://www.developersdesk.com
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
Kelly
303-444-1671
Boulder, Colorado
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
Kelly
303-444-1671
Boulder, Colorado
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-m
e-mail: [EMAIL PROTECTED]
> >To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
> --
> http://www.mossroot.com/index.php
> AIM Handle: Buffalo2K
> e-mail: [EMAIL PROTECTED]
> "When you lose the power to laugh at yourself, you lose the power to think
> straight." --Clarence Darrow
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
Kelly
303-444-1671
Boulder, Colorado
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Richard S. Crawford wrote:
> Date: Sat, 10 Mar 2001 00:47:01 -0800
> From: Richard S. Crawford <[EMAIL PROTECTED]>
> To: Kelly Corkill <[EMAIL PROTECTED]>,
> Richard S. Crawford <[EMAIL PROTECTED]>
> Cc: [EMAIL PROTECTED]
> Subject: Re: [PHP] PHP and the MI
al/bin/libtool /usr/share/libtool
> pablo@pablito:~/php4 > whereis automake
> automake: /usr/bin/automake /usr/share/automake
> pablo@pablito:~/php4 > whereis automake
> automake: /usr/bin/automake /usr/share/automake
> pablo@pablito:~/php4 >
>
> I installed l
checking for isfinite... no
> checking for isinf... yes
> checking for isnan... yes
> checking whether fp_except is defined... no
> checking whether to enable experimental ZTS... no
> checking whether to enable inline optimization for GCC... no
> checking whether to enable a memory limit.
I am having a problem inserting users info info into the mysql database.
When I check mysql log it shows the query I tried to run. But when I go
check the mysql database the info doesn't appear, I checked the permissions
on the user I have setup and he has all the proper rights. If anyone have
any
I am a newuser to php , I am setting up a site with user authenication and I
would like to setup a ICQ function some my users will know if other users
are online can someone please guide me in the right direction..
Thank You
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-
pose
the additional step to PHP with default context selection, ala the MySQL
default db handles, but that's beyond my tinkering skills with PHP
extensions at the moment. I'll be happy to send what I have to whomever
is most likely to end up doing the 3.x extension. Just let me know.
--
;
> I found some info about CURL, http://curl.haxx.se/, and it seems like it
> might do the trick. I was wondering if anyone has experience with this a can
> confirm that this is the best approach or give me some other direction.
>
> Thanks,
> Tom
-- -
Kelly Cochran <[
I am setting up a dating site and I would like to know the best way to do searchs on
things like city , state, male , or female, age and so on. Any help would be
appreciated. On my forms I will have drop down menus..
Thanks
Hey folks,
What language is associated with a web page with a .epl extension?
Thanks
Kelly
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL
Happy New Year,
Does php set a variable that tells you the url of the page that a user has just come
from? So if I wanted to create my own 'Back' button in a pop up window, for instance?
Thanks in advance,
Kelly
--
PHP General Mailing List (http://www.php.net/)
To unsubscri
Hi, I am using the example code at php.net to FTP a file to a remote server.
I am trying to overwrite an existing file, but want to maintain the
owner/group of the file being overwritten but it keeps giving the
overwritten file the owner/group name of the userid that I am loggin in via
FTP with. W
How do I check if a remote file exists that is in a directory protected by
an .htaccess file?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
"John Kelly" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> How do I check if a remote file exists that is in a directory protected by
> an .htaccess file?
>
I should have added that this is the code I have tried without su
I have multiple domains hosted on a server. When I fsockopen to one of them
I end up in the document root of another one. Is there a way to specify the
directory one ends up in after establishing an fsockopen connection OR
issuing a command via fput to CD to a different system path after
connectin
Hi folks,
I need to get the next auto_increment value of a mysql table thru php.
Looking at my mysql manual, it makes reference to a last_insert_id() function?
How would I use this via php, or is there some other way to do it?
Thanks
Kelly
--
PHP General Mailing List (http://www.php.net
ingle file if possible?
Thanks in advance,
Kelly
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
, etc?
I appreciate any guidance,
Kelly
Firstly I would like to say that this is NOT a request for help, but
rather the answer I found to the question I had asked more then a week
ago, but got no response. From the lack of response I would assume that
a) nobody cared that I had a problem, or b) that nobody knew the
answer... I hope the
Ok
Let's say I'm querying a table, and looping thru the results:
$connect=mysql_connect(host,user,pass);
$thedb=mysql_select(database1);
$thequery="select * from foo";
$theresult=mysql_query($thequery) or die (mysql_error())
while ($output=mysql_fetch_assoc($theresult)){
do stuff here..
}
Wh
Hi, I have a form using the post method that outputs a dynamic number of
fields each time with the same name but different values - this is required.
For example ...
filename[]
filename[]
filename[]
filename[]
On the next page I try to access the array using ...
for($i=0; $ihttp://www.php.net/)
"John Kelly" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi, I have a form using the post method that outputs a dynamic number of
> fields each time with the same name but different values - this is
required.
> For exam
1 - 100 of 284 matches
Mail list logo