please help me
how upload 5 file gif or jpeg together with php.
RiZaL
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Can php execute .exe file under dos and view result on the browser ?
Rizal
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Can php execute .exe file ( compile from BorlandC) and view result on the
browser ? PLease Help Me
Rizal
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
,AU,ST,SD,SC,BT,BD,BC,AT,AD,AC)
> ) TYPE=MyISAM COMMENT='CCL Bibliography - Bibliographie ECC';
This has nowt to do with PHP, please ask on the MySQL list.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hos
On Monday 25 November 2002 02:10, gamin wrote:
> i guess i can use $remote_addr to see if the user has an IP.
>
> But still out of curosity - any way of knowing the user that called the
> script ?
Use phpinfo().
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Op
> //-->< something here would be nice
> }
Usually, it's not necessary to use stripslashes() on data retrieved from a db.
But if you insist ...
foreach ($data as $key => $value) {
$data[$key] = stripslashes($value);
}
... should work.
--
Jason Wong -> Gremlins
explain ina little more detail?
If there are tutorials on this type of stuff then google would know -- just go
and ask it nicely. And of course there's always the chapter in the manual
which deals with "Security", some good stuff there.
--
Jason Wong -> Gremlins Associate
it's best answered with five minutes on the PC, than a
msg to the list ... ad infinitum
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Who's on fi
good code from a reliable source with the same results. Any idea
> on this. It happens on multiple systems.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
han the people on the PHP-General list).
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
knowledge, n.:
Things you believe.
*/
--
PHP General Mailing Li
On Monday 25 November 2002 14:20, Kyle Gibson wrote:
> Leif K-Brooks wrote:
> > I'm working on adding simple BBCode to my site. I'm currently using the
> > [i] tag for testing, with the following code:
> >
> > > function bbcode($text){
> > $text = ereg_replace('\\[i\\](.{1,})\\[/i\\]','\\1',$text
doubt, print it out (TM):
print_r($_POST);
The best way to do it (IMHO) is to:
foreach ($_POST['Consultants'] as $key => value) {
print "$key: $value";
}
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrat
ch requires (to my horror) Register_Globals=On.
>
> Short of two Apache/PHP servers, what is a logical way to structure things
> so that the 'wiki' runs 'insecure' but other/'my' PHP work runs more
> securely?
Set it on a per directory basis. If using Apache som
by something called ezmlm. It is something that runs in
conjunction with qmail. Google for more details.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
I h
in a single operation:
$text = '[i]This[/i] is a [i]test[/i].';
$search_for_tags = array("/\[i\]/", "/\[\/i\]/");
$replace_with_tags = array("", "");
$text = preg_replace($search_for_tags, $replace_with_tags, $text);
print $text;
--
Jas
sponse if you actually copy and paste the error message
or whatever. If that's not possible at least give a brief description as to
what the problem is. Having to make people go through extra steps to help you
is not a very good idea.
--
Jason Wong -> Gremlins Associates -> w
r something along the lines of "create mail
account using php".
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
I'm going to live forever,
On Tuesday 26 November 2002 04:42, Kyle Gibson wrote:
> > Thanks, but that doesn't allow nested tags (a [b] tag inside of an [i]
> > tag, for example).
>
> Nested tags? Do you mean [ib] ? Or [i[b]]?
I think he means:
"[i]A sentence in italics, with a word in [b]b
t a bad parameter message on the line with the call to the Implode
> function.
implode() expects an array as the second argument. You're passing a string. In
fact with the code you have above I don't see why you don't just tack the
comma on the end in the first place:
if($
ways be FALSE. $linefour = "" does not
evaluate to TRUE thus the whole expression to be FALSE!
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
ment about implode expecting an array helps out. Thanks.
Yes, but as you're building up the SQL statement manually you just leave out
the comma off the last line!
Using implode() is appropriate if you're programatically (sp?) building an SQL
statement using an array.
--
Jason Wong -> Greml
t user and password passed to ftp_login()) on port
> 21 without worrying about getting hacked?
Well, if you're going to be using ftp-over-ssh, I don't see why you're not
using scp directly instead.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source
ink you mean "Array". Because $sqlUpdate is an array you can't simply
print it out (you'll just get 'Array' printed).
> What am I doing
> wrong?
You didn't use implode(), which after all is the subject of this thread ;-)
--
Jason Wong -> Gremlins Asso
) Please do not use HTML mail when posting to mailing lists.
2) Try to give more information about your problem -- what database are you
using?
Read this thread:
http://marc.theaimsgroup.com/?l=php-general&m=102797825404282&w=2
--
Jason Wong -> Gremlins Associates -> www.gre
ill receive
> a copy.
> But in the same time to be able to access the message archive via the web.
google -> mailing list manager software
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet &
t; permanent place?
>
> I have never done this before, but maybe someone else has? Any tips on how
> to do this, what "type(s)" of DB tables are required to do this and can you
> give me an url to help me research it further?
Search the documentation of your db of choice for
On Wednesday 27 November 2002 05:56, The Gabster wrote:
> Thanks Jason...
>
> I went through those but so far nothing in php... :-(
> > google -> mailing list manager software
Try adding 'php' to the list of search terms above.
--
Jason Wong -> Gremlins Asso
ries to contact
>
> the old IP address.
>
> How can I make the client point to the new IP address of the same
> server?
Have your php output a meta refresh tag.
> I can show the code also.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software System
ssions to delete it
> > when done ...
Use chmod() to make the file(s) rw by 'others'.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Beware of
On Thursday 28 November 2002 02:02, Nick Wilson wrote:
> Hi all,
>
> I must be missunderstanding something here, I have this in an php 'upload
> form':
>
>
>
> So why won't it upload a 1.5MB file?
manual -> Handling File Uploads
--
Jason Wong ->
Works for me :) Maybe you're using safe mode?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
If you see an onion ring -- answer it!
*/
--
PHP General
ething like:
if (strstr($USER_IP, '192.168.0.')) {
do_something(); ...
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
A memorandum i
ave set up known_hosts and authorized_keys. But the above
> is the result when I run scp as user 'apache'.
Here's what I've used before and it works for me:
In the HOME directory of the apache user I have the usual .ssh/known_hosts
file.
Then in php, simply:
shell_exec(&
On Thursday 28 November 2002 02:40, Nick Wilson wrote:
> * and then Jason Wong declared
>
> > On Thursday 28 November 2002 02:02, Nick Wilson wrote:
> > > Hi all,
> > >
> > > I must be missunderstanding something here, I have this in an php
> > >
ds I've tried, so would
> like to see if anyone has a proven method for doing this.
Why don't you briefly summarise what methods you have tried? That way people
won't reply with methods that you already know of.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
On Saturday 30 November 2002 06:42, magnus nilsson wrote:
> It works, partially. I can upload the file, but it's named "array".
print_r($_FILES)
to see what it contains and how you can use it.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Soft
"; }
IOW please elaborate on what you're trying to do.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Writing about music is like dancing
use of file(). It should be the most reliable indicator of
whether or not a link is valid.
Using ping on it's own doesn't really help much. A server may be configured to
ignore ping requests. And even if a server responds to a ping request it
doesn't mean the webserver is up and runnin
sure you have error reporting set to an
appropriately high level).
file() implicitly opens and closes the file for you so no need for fclose().
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intrane
. I
> want to the output of list_writings() to be an argument for std_layout().
Hmm, what's the problem then?
Functions take any valid expressions as arguments. If list_writings() returns
a valid expression then you should have no problems at all.
--
Jason Wong -> Gremlins Associates -&
s.
2) How did you conclude that? Did you check that
list_writings(poetry)/list_writings($poetry) gives the correct result? IE
echo list_writings(poetry)/list_writings($poetry) ?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* We
s by adding an * before the result variable
>
> *$fp = fopen($linkdata['linkurl'],"r");
I think you mean '@':
$fp = @fopen($linkdata['linkurl'],"r");
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software S
of:
$count = 0;
while ($row(mysql_fetch_array($result_id))) {
$count++;
echo "Entry $count";
...
...
}
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applicat
the "DocumentRoot" line in httpd.conf. You did not say exectly
> > what error you were getting, I'd assumed that you were just seeing the
> > source of your file and that the only problem was php not parsing it.
> > Presumably you were getting "Document not found
error as when I visit the page, and I can't find any error looking
> through the file ("/,/; etc.).
Check for matching ',", {, (, [ and missing ;
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting
e using:
ini_set("include_path", "/new/path");
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Pardon me while I laugh.
*/
--
PHP Gene
On Tuesday 03 December 2002 01:20, Matt Babineau wrote:
> Hi everyone:
>
>
>
> I just read the reply from Jason Wong pretty much just about my
> question. Using the ini_set() command at the top of all my pages I think
> would work out ok, but when I upload my pages to
On Tuesday 03 December 2002 02:34, Jonathan Sharp wrote:
> also take a look at hord-imap (http://www.hord.org)
That's horde with an 'e' on the end, it's silent but it's still there ;-)
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Softwar
link to a file
> on a remote server if the file isn't in the root directory?
Yes.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
... My pants just we
sponse to your original question, yes you can run asp on apache.
google -> "asp apache" would have told you the answer is less than 1 second.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Interne
e is easy, use the BETWEEN clause in your SELECT statement. Consult
manual for details.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Intuition, however ill
: . CC: [EMAIL PROTECTED] BCC: [EMAIL PROTECTED]"
Headers need to be separated by "\r\n". But it is much more convenient to use
a ready-made class instead ...
> I try severals classes I have found (PHP Classes), no good result !
... try phpmailer (www.phpc
rver with IIS
> 5, PHP4, and MySQLmax 3.23.53. I am by no means experienced in setting
> up any of these items, but my simple question is, how do I determine the
> name of the MySQL server so I can get PHP to connect to it?
If they're all on the same server use 'localhost'
ot;Address: {$value['address']} State: {$value['state']} Zip:
{$value['zip']}";
}
For a single address use:
NAME="address[address]"
NAME="address[state]"
NAME="address[zip]"
And no need to loop, just use the values
using: unset($_SESSION['step'])
If register_globals is enabled THEN you use the session_register(),
session_unregister() functions. In which case in your examples above, the use
of extract($_SESSION) is meaningless, and you need to
session_register('step'), then $step = 2.
while (list(,$filearr) = each($files))
> {
> echo " value=\"".$filearr["file"]."\">".$filearr["file"]."".$filearr["time"];
> }
> echo "";
> }
>?>
It's all very well
On Wednesday 04 December 2002 08:29, Jeff Bluemel wrote:
> ... but the date format doesn't seem to
> allow me to pass it a date.
Your code?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting
In stupid browsers like IE and Mozilla it _forces_ you to repost the
data. IOW the back button doesn't really go back, to the previous state, like
what the specs say it should do.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* We
n't know about "file://". If the file is on your webserver then
just specify the absolute path to the file.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Appli
auto_prepend_file', $path.'systemVariables.php'))
You can't set the auto_prepend_file value at runtime -- auto_prepend has
(should have) already taken place by the time your script is run!
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software System
te names for the images and dont ever have to worry about if this
> name exists and with out having to got to the trouble of asking the user
> to change tha name of the file.
>
> So dose some one have a nice litle solution for this problem.
uniqid()
--
Jason Wong -> Gremlins Ass
On Thursday 05 December 2002 04:08, Christopher J. Crane wrote:
> This is the output I get and you can see that on the lines where the loss
> is 0% it still says 100%
> > if($Results2 = "100% loss") { print " Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* W
;tseem to figure out how to mail it. I
> know I need to make all of this a variable to pass to my mail script, but
> how ? My mail script work fine if I define $body and send that but I can't
> seem to do that with this code.
In your while loop, instead of (or as well as) using echo
quot;UPDATE $table_name
> SET
> name = \"$name\",
> lname = \"$lname\",
> mobil = \"$mobil\",
> email = \"$email\",
> url = \"$url\",
> WHERE id= \"$id\"
> ";
>
> $resul
to reset upload_max_filesize to greater
> than 2M.
You mean you set it in php.ini and phpinfo() reports something different?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications
() after each of your mysql_*() functions.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Experience is not what happens to you; it is w
ection - if try with old user and password - can
> get connected
>
> what's wrong ?
Why do people insist on asking MySQL questions on a PHP list?
search for "flush privileges" on the MySQL website.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Soft
sy but works.
Messy indeed ;) Why not $url = addslashes($url) beforehand THEN use it to
construct the query?
> Oh, and stripslashes on the output too.
No need for stripslashes() when _retrieving_ from the db.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software
case, the correct way to specify php options in a .htaccess file is:
php_value auto_prepend_file "C:OPENFEDRA\Apache\xxx\xxx\xxx.php"
NB there should not be an '='.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web
han to ask?
BTW make sure that none of $num is zero.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
The longest part of the journey is said to be the p
recting, why output anything at all?
or
2) Use the output buffering functions.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Do not drink coffee
(practically) any size of string as input and
returns a 32 char string.
So you give it a 1MB string and in return you get a 32 byte string -- how on
earth are you going to reverse this process and get your original 1MB string
from your measly 32 byte string?
--
Jason Wong -> Grem
On Friday 06 December 2002 18:18, Randum Ian wrote:
> Sorry to be off-topic but has anyone got any good resources on setting up
> exmlm?
google has
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Int
me'] The temporary filename of the file in which
> the uploaded file was stored on the server
Hmm, just print_r() the damn thing and see what it contains ;-)
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting *
;
> Any suggestions will be greatly appreciated.
Am I missing something or are you really trying to insert non-digits into an
INTEGER field?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet &
On Friday 06 December 2002 23:18, [EMAIL PROTECTED] wrote:
> Hi list,
>
> anybody here who knows a HowTo of installing PHP with gd support?
If gd libraries was installed in /usr/lib then use "--with-gd=/usr".
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Ope
u can actually treat $str "like" an array so
>
> $str[0]
>
> would be "i".
This isn't officially endorsed anymore. You should use $str{0} instead.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Des
er want to log on, or have a session or cookie allready
> if(isset($_SESSION['ssun']) || isset($_COKKIE["ssun"]) ||
-^
Shouldn't that be $_COOKIE??
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open
ing on the same machine as your webserver.
Otherwise try using whatever SMTP server you're using to send mail from your
mail client.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Int
On Saturday 07 December 2002 04:26, 1LT John W. Holmes wrote:
> >I don't can redirect my page to new url
> >please help me
> >
> >Carlos Alberto Pinto Hurtado
>
> I posted the answer on my web page.
Can you redirect the answer to the list so we can all see
y for a
> same position, on the same day and during the "shift" of the first one that
> applied?
Check the archives, there was a thread in the last couple of days about
"Checking for Overlapping Dates". The same principles should apply so it may
be useful reading.
--
Jaso
usion was.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Reply hazy, ask again later.
*/
--
PHP General Mailing List (http://www.php.net/)
To u
e script creates a file containing only
> "427" on the server. Any ideas why or what I can do to correct this?
Hmm, I don't see how the above code can make the remote image *display* your
browser. The code itself looks OK, are there some parts of the code that you
haven't
gt; if (!$file) {
> > > echo "Unable to open remote file.\n";
> > > exit;
> > > }else{
> > > while (!feof ($file)) {
> > >$line = fread ($file, 1028);
> > >fwrite($fc,$line);
> > > }
> > > }
> > &
ine 2
>
> Here is a copy of the code I am using:
>
>
> $link = mysql_connect("localhos" , "username" , "password")
> or die("Couldn't Connect.");
> ?>
... assuming that the above really is a typo and you _are_ us
want to also every article to has its own
> image showed above. I thought that it could be a could to upload the
> image to the blob column in database.
> Can anyone help how to save uploaded image in blob and how to
> retrieve it from the database and show in web page.
goog
able-sockets
For best results when recompling. Completely remove the old source directory
then untar a fresh new copy.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications
ss the image creation function a variable for the filename it
> tells me "invalid filename", although I am echoing it out right before
> and it looks perfect. Any thoughts?
Could you show the (relevant) parts of your updated code?
--
Jason Wong -> Gremlins Associates -> www
Well that's a pretty serious error. Basically, what it means is that httpd
process that was running your script dieded (and under normal circumstances
it shouldn't happen). If it's a repeatable bug then you should consider
filing a bug report --> http://bugs.php.net.
p.txt
>
> Oliver Etzel
>
> .eu - domain are coming soon
> www.t-host.com
Or simply
#php -i
It would be nice if there was a text-only version without all the HTML gunge.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrator
s values
> to the data above as well.
Name your rows something along the lines of:
Then to process:
foreach ($rows as $row) {
echo "$row['category'], $row['rank'], $row['rankid']";
}
--
Jason Wong -> Gremlins Associates -> www.greml
]' as your delimiters, just
change the regex accordingly -- and don't forget that '[', and ']' needs to
be escaped.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet &
a plain old login script, or is it one which uses javascript to MD5 the
password? If the latter, you may want to check you've enabled javascript.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & In
gif)
No. PHP is good, but not *that* good.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Common sense and a sense of humor are the same thing, moving at
dif
p.net/manual/en/configuration.directives.php#ini.register-glob
>a ls
>
> (php_flag register_globals = ON;) i think.
Can't be done at run-time. See table in manual.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet &
output I get in the target file is this:
> 200212101552localhost#xxx#yyy
Because some pre-defined variables aren't pre-defined anymore. Read the
variables section of the manual or use phpinfo() to see which really are
pre-defined.
--
Jason Wong -> Gremlins Associates -> ww
la, IE, Opera all exhibit this problem (under
Windows at least). Can't you split your select box to some manageable
proportions? Select state first, then show the list of counties within that
state?
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Syst
pass these vars via the mentioned ways.
>
> What else does PHP offer? Are there any other methods? Can I define these
> vars as some kind of "global variables" in any ini-file?
Use sessions.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software
orary] uploaded file? Shouldn't you be
renaming the above copied file?
In fact you should be able to do it in a single step by copying the uploaded
file to its new destination and new filename.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integ
'userfile']['tmp_name'])) {
copy($HTTP_POST_FILES['userfile']['tmp_name'],"http://www.violasystems.c
om/images/$category");
That should do it in a single step.
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Softw
1 - 100 of 3372 matches
Mail list logo