#x27;PATH_INFO']);
where:
$relative_path=../image.png
$type=jpeg
$color=42
$cache=0
many thanks in advance
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
+---------
| Aaron Kon
ibe, visit: http://www.php.net/unsub.php
--
+----
| Aaron Koning
| Information Technologist
| Prince George, BC, Canada.
+
| http://datashare.gis.unbc.ca/fist/
| http://datashare.gis.unbc.ca/gctp-js/
+
using PHP
function?
Regards,
Ko Ko
Reality starts with Dream
-
How low will we go? Check out Yahoo! Messenger's low PC-to-Phone call
rates.
--
+----
| Aaron Koning
| Information Technologist
| Prince
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
+
| Aaron Koning
| Information Technologist
| Prince George, BC, Canada.
+
| http://datashare.gis.unbc.ca/fist/
| http://datashare.gis.unbc.ca/gctp-js/
+
Please attempt to search www.php.net first for this information.
A search for 'file uploads' reveals what you want:
http://ca.php.net/features.file-upload
Aaron
On 1/16/06, suresh kumar <[EMAIL PROTECTED]> wrote:
>
> hi,
> i dont know exact PHP code for how 2 open file browser windo
Try simplifying the problem to determine the error point. For example don't
involve $_POST just try setting a cookie with hard coded variables. If that
works then add in the $_POST and test for BOTH $_POST['prefs'] and
$_POST['filter'].
Example of simplification:
Aaron
On 1/14/06, Al <[EMAIL
$map is not a member variable of the Loc class in your code...
Instead do this:
class Loc {
// Defines a member variable
var $map;
// Constructor
function Loc() {
$this->map = new Map(); // Create map object and save to Loc object
$this->map->setKey();
}
}
$loc = new Loc();
$loc
"exception, final, php_user_filter, interface, implements, extends, public,
private, protected, abstract, clone, try, catch, throw" where not introduced
until PHP 5 (http://ca3.php.net/reserved).
Therefore, var is the only way to define member variables prior to PHP 5.
Aaron
On 1/11/06, Peter
Why not send us the Call and the Function for arguments sake (pun intended).
Aaron
On 1/6/06, enediel gonzalez <[EMAIL PROTECTED]> wrote:
>
> Hello
> I've a function with 6 arguments that works properly.
>
> Trying to add a 7th argument an being sure that calling the function I
> pass
> that one
Generally, scope is fairly loose in PHP. If $row is set by
mysql_fetch_array(...) it should carry throughout your script as it is,
unless modified. Try commenting out non-relavant pieces of the code and
var_dump(...)ing the $row variable at the start and throughout the script.
Aaron
On 1/5/06, M
I don't know about whats best for the compiler (rather interpreter), but if
it is a really big site with a lot of access, transaction and management
functionality I recommend you start breaking the code into classes and
separating each class into a file and documenting... A LOT! It will be
clearer
This should work, although if there are only 9 lines in the file, it will
run infintely (or until the page times out)... so put a check in for that.
$imagesNeeded = 10;
$imageArr = array();
// Create array with $imagesNeeded number of elements.
for($i=0;$i<$imagesNeeded;$i++) {
// choose image
t; Server API Apache 2.0 Filter
>
> I searched for information if PHP 4.3.11 is supposed to work fine with
> Apache 2.0.55, but didn't find a clear answer.
>
> Perhaps you know (or someone else knows) if my thoughts are going in the
> right direction?
>
> Bye
>
Ganu,
Are you simply looking to use the md5 string for authentication? If so you
don't need to retrieve the decrypted version, simply encrypt what the user
submits and compare the two md5 strings.
Aaron
On 12/15/05, Chris Shiflett <[EMAIL PROTECTED]> wrote:
>
> ganu wrote:
> > I want a function
I wasn't aware you could use = instead of echo (). Try making an even simpler HTML/PHP example and see if the problem
exists there. Then you can incrementally build your HTML/PHP back up to the
point where it is breaking. Example:
Aaron
On 12/15/05, Sabine <[EMAIL PROTECTE
05, at 11:35 PM, Aaron Koning wrote:
> > Its been my experience that meta tags work better.
>
> I guess what you are saying is that this:
>
> content="0;url=https://www.theNewUrl/forward.html";>
>
> Is better than this:
>
> header("Refresh: 0; URL
I have found that using the header function doesn't actually redirect the
page, it pulls the content into the page that the function is called from
(which works good for somethings, but can get confusing with post variables
and such). Its been my experience that meta tags work better.
Aaron
On 12
17 matches
Mail list logo