Hi,
Saturday, June 18, 2005, 8:47:58 AM, you wrote:
b> hi...
b> i've got a problem where i'm trying to play with imagemaps. i created a test
b> image map, but when i select inside the image map, i 'see' the "?x,y" from
b> the imagemap, appended to the url in the browser address bar... i get
b> ht
Hi,
Saturday, June 18, 2005, 7:55:10 AM, you wrote:
MM> I have to send a PDF file after a submit on a form. The PDF is well created,
MM> and I'm sending it to the client with this:
MM> $fpdfName = "/tmp/" . session_id() . ".pdf";
MM> // Vamos a mandar el PDF
MM> header('Content-type: application
bruce
on Friday, June 17, 2005 5:05 PM said:
> chris...
>
> i'll humour you.. although i'm pretty sure you have no idea as to
> what i'm trying to acomplish.. or how to get to my goal...
>
> the basic issue is to allow a user to click inside an image map, and
> to translate the coordinates
chris...
i'll humour you.. although i'm pretty sure you have no idea as to what i'm
trying to acomplish.. or how to get to my goal...
the basic issue is to allow a user to click inside an image map, and to
translate the coordinates to something else, prior to sending the
information back to the s
bruce
on Friday, June 17, 2005 3:48 PM said:
> i've got a problem where i'm trying to play with imagemaps. i created
> a test image map, but when i select inside the image map, i 'see' the
> "?x,y" from the imagemap, appended to the url in the browser address
> bar... i get http://foo.com?3,5
* Martín Marqués :
> I have to send a PDF file after a submit on a form. The PDF is well created,
> and I'm sending it to the client with this:
>
> $fpdfName = "/tmp/" . session_id() . ".pdf";
>
> // Vamos a mandar el PDF
> header('Content-type: application/pdf');
> // El archivo se va a llamar li
Is there any list (or forum) that can help me with this?
Thanks,
Yasir
On Fri, 17 Jun 2005, Yasir Malik wrote:
Date: Fri, 17 Jun 2005 11:51:24 -0400 (EDT)
From: Yasir Malik <[EMAIL PROTECTED]>
To: php-general@lists.php.net
Subject: [PHP] Extensions: parameters as references
I am creating a PH
hi...
i've got a problem where i'm trying to play with imagemaps. i created a test
image map, but when i select inside the image map, i 'see' the "?x,y" from
the imagemap, appended to the url in the browser address bar... i get
http://foo.com?3,5 etc...
is there a way to prevent this from occurin
ALERT!
This e-mail, in its original form, contained one or more attached files that
were infected with a virus, worm, or other type of security threat. This e-mail
was sent from a Road Runner IP address. As part of our continuing initiative to
stop the spread of malicious viruses, Road Runner s
Is there a way to call a php function from a button press to display
the results further down on the same page? I want to avoid setting up
an 'output-area' in a frame or having to put my function in a separate
script.
http://developer.apple.com/internet/webcontent/xmlhttpreq.html
http://www.xml.
Is there a way to call a php function from a button press to display
the results further down on the same page? I want to avoid setting up
an 'output-area' in a frame or having to put my function in a separate
script.
Thanks,
Malcolm.
--
PHP General Mailing List (http://www.php.net/)
To unsubscrib
I have to send a PDF file after a submit on a form. The PDF is well created,
and I'm sending it to the client with this:
$fpdfName = "/tmp/" . session_id() . ".pdf";
// Vamos a mandar el PDF
header('Content-type: application/pdf');
// El archivo se va a llamar libreDeuda.pdf
header('Content-Disp
On 6/16/05, Sebastian Mendel <[EMAIL PROTECTED]> wrote:
> Dotan Cohen wrote:
> > On 6/15/05, Sebastian Mendel <[EMAIL PROTECTED]> wrote:
> >> Dotan Cohen wrote:
> >>
> > Hi gurus. I'm having fun replacing the text within [ and ] to XML
> > format on 4000+ files on a windows XP machine. I in
is there a way to sort the properties of an object by their name, much
like sort works on arrays?
i am getting back an object from a database query and want to list the
resulting items in alpha order by field name...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http:/
That's why I have this at the top of my mail filters:
if subject matches regexp
([[:blank:]][[:blank:]][[:blank:]]+) | (^$) | (^[[:blank:]]+$)
transfer to trash
I'm using Eudora btw...
Was gonna do a filter to dump all subjects that have nothing else but
"help" in them too, but haven't quite d
Try this I think it will work.
$count = count($arry);
for ($i=0; $i<$count; $i++) {
// do something with $array[$i]
}
cout($array) brings back the number of elements in the array which limits
the lookup index.
-Original Message-
From: Rick Emery [mailto:[EMAIL PROTECTED]
Sent: Frid
* John Nichel <[EMAIL PROTECTED]> :
> [EMAIL PROTECTED] wrote:
> > Maybe off topic:
> >
> > I would not agree totally with that link because this really doesn't
> > make a sense:
>
> > I am new in PHP and got so many times "RTFM" answers and didn't find
> > them helpful at all. From 'skilled
Quoting Ross <[EMAIL PROTECTED]>:
As with my previous post the problem is the pieces of the array can vary
from 1 to 4 items. So pieces 3 and 4 are often undefined giving the
'undefined index' notice. All I really want to do is display the array
pieces if they EXIST. But as they are inside a ech
I have one for windows, think it works with PHP4 aswell, not sure where
i put it so let me know if you require it and Ill dig it up?
problem is it wont work on Linux.
Jay Blanchard wrote:
[snip]
Did you try using fopen's binary safe read? Something like :
[/snip]
Shy of being able to do
Ok. Maybe I went a little bit over the edge :). I agree APSOLUTLY
that asking questions without ANY research doesn't make a sense either.
And, as you mentioned, is not helpful at all, neither for person who
asked or the one who's going to try to answer.
But, sometimes, in my opinion, RTFM is u
You pointed the configure line to the source files and not the installed
version of openssl, you should compile and install openssl first, change...
--with-openssl-dir=/usr/local/src/webserver/openssl-0.9.7d
to...
--with-openssl-dir=/usr/local
Or wherever you installed openssl, /usr/local
On Jun 17, 2005, at 9:18 AM, Bob Winter wrote:
nntp.charter.net wrote:
I want to write a trace procedure and call it with variable names,
and I am having trouble with the syntax. My goal is to have a
procedure that will echo lines such as:
Trace: $myvar="the contents of $myvar
My attempt
[EMAIL PROTECTED] wrote:
Maybe off topic:
I would not agree totally with that link because this really doesn't
make a sense:
The point of doing all the points (or as many as you can) is to do for
yourself. If you (same thing) want someone to do a task for you with no
research/work on your
[snip]
[/snip]
The thing is that the OP asked such a broad question. How many answers
are there to the question that he asked? I have taught entire semesters
with less broad questions. And you're right...RTFM doesn't always work,
but would come back with, "I RTFM and I still don't understand
Maybe off topic:
I would not agree totally with that link because this really doesn't
make a sense:
"...
Before asking a technical question by email, or in a newsgroup, or on a
website chat board, do the following:
1. Try to find an answer by searching the Web.
2. Try to find an answer by
The Doctor wrote:
Question: Is there a package that can autogenerate a Web Site
using templates based on BSD/Apache/Mysql/PHP ??
IT would be nice to know.
Poster, meet Google. Google, poster. I hope you two will have many
happy years together.
http://www.catb.org/~esr/faqs/smart-question
[snip]
Question: Is there a package that can autogenerate a Web Site
using templates based on BSD/Apache/Mysql/PHP ??
[/snip]
Yes?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Bob Winter wrote:
nntp.charter.net wrote:
I want to write a trace procedure and call it with variable names, and
I am having trouble with the syntax. My goal is to have a procedure
that will echo lines such as:
Trace: $myvar="the contents of $myvar
My attempt that didn't work is to wri
I am creating a PHP extension. In my function, I want the parameter to be
a reference. The extension function works fine only if the variable
passed is initialized. For example, here is the extension function:
ZEND_FUNCTION(first_module)
{
zval *parameter;
if (zend_parse_parameters(ZEN
hi every one
i am using php5 apache2 windows-xp and internet exlorer version 6 to
create svg tools (adobe 3 the plagin)
i have written a very simple code which has a session variable
the problem when i click the next botton to go to the next page a dialog
box comes up (called download file ) givin
Davide Pasqualini wrote:
I did as You suggested:
but Hello.Exe, a very simple program, doesn't run and my browser seems
waiting something from the server.
Can I run a program (exe file) in another way ?
Thank in advance for your help.
Davide
PHP will just sit there waiting for Hello.exe t
nntp.charter.net wrote:
I want to write a trace procedure and call it with variable names, and I am
having trouble with the syntax. My goal is to have a procedure that will
echo lines such as:
Trace: $myvar="the contents of $myvar
My attempt that didn't work is to write a function:
functi
Question: Is there a package that can autogenerate a Web Site
using templates based on BSD/Apache/Mysql/PHP ??
IT would be nice to know.
--
Member - Liberal International
This is [EMAIL PROTECTED] Ici [EMAIL PROTECTED]
God Queen and country! Beware Anti-Christ rising!
nk.ca started 1 Ju
ALERT!
This e-mail, in its original form, contained one or more attached files that
were infected with a virus, worm, or other type of security threat. This e-mail
was sent from a Road Runner IP address. As part of our continuing initiative to
stop the spread of malicious viruses, Road Runner s
OK,
in the task manager Hello.EXE is running (owner SYSTEM) but I don't see
anything on the screen
"Edgars Klavinskis" <[EMAIL PROTECTED]> ha scritto nel messaggio
news:[EMAIL PROTECTED]
>
> Edgars
>
>
>
> Davide Pasqualini wrote:
>
> >I did as You suggested:
> >
> > >$win_cmd = "\"C:\\Hello.exe\
What is a reliable cross-platform way of showing which user PHP is
running as?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Edgars
Davide Pasqualini wrote:
I did as You suggested:
but Hello.Exe, a very simple program, doesn't run and my browser seems
waiting something from the server.
Can I run a program (exe file) in another way ?
Thank in advance for your help.
Davide
--
PHP General Mailing List (ht
I just need to understand how I can run Hello.exe
Thanks for your help
Davide
""Richard Lynch"" <[EMAIL PROTECTED]> ha scritto nel messaggio
news:[EMAIL PROTECTED]
> On Thu, June 16, 2005 6:23 am, Davide Pasqualini said:
> > I'm Windows XP Professional SP1, Apache 2.0.50 and PHP 5.0.4
> > I'm t
I did as You suggested:
but Hello.Exe, a very simple program, doesn't run and my browser seems
waiting something from the server.
Can I run a program (exe file) in another way ?
Thank in advance for your help.
Davide
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: h
Andy Pieters wrote:
Hi All
I am trying to compile php 4.2 on Fedora Core 4 Test 3
can't help you there - its the kind of thing that make me lose hair too! :-/
...
Ps: I know that PHP 5 is out, but I need this to port my program to 4.2+ < 5.0
why are you porting to an previous major ve
Thanks for all the suggestions. I am going to plan on trying them out just
to see some other ways of making it work. I finally got it to work after
hours of just playing around with the code. Here is what I ended up doing:
for($i=1;$i<=$boxes;$i++){
echo $_GET['name'.$i];
}
Moving the $i i
Just so there is no confusion...I mistyped the line:
$names = substr(strrchr($_SERVER['QUERY_STRING'],"&"),7,1);
It should be a 5 instead of a 7 at the end:
$names = substr(strrchr($_SERVER['QUERY_STRING'],"&"),5,1);
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: h
For the determining what part of the picture the user is refering to
I'd use image maps - which depending on your situation can be
serverside, or clientside.
I wouldn't bother with imagemagick, in this case, and just stick to gd.
On 6/17/05, bruce <[EMAIL PROTECTED]> wrote:
> hi...
>
> i'm consi
hi...
i'm considering creating a short test app/game to allow users to use their
mouse to select items from a given image/pic. i'd like to be able to take
some basic shapes, and construct an image/mosaic from them. i'd then like to
be able to display the image to the user, and have the user select
Jay Blanchard wrote:
I am in need of a PHP class or script or something that will allow me to
like Richard mentioned - exec out to the shell and zip there
I wrote a little/simple class when I was bored, here you go, HIH -
(sorry about the linewrapping)
I use the class in backoffice settin
Jason Barnett wrote:
Jay Blanchard wrote:
[snip]
Close... I think array keys are preserved from the (original) first
array, but other than that those appear to be the values that should
intersect.
[/snip]
After a var_dump I am seeing that there is an extra space in each
element of one array
> -Original Message-
> From: Ross [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 16, 2005 8:51 PM
> if ($quantity == 0){
>
> }
>else {
>
> $pieces = explode(" ", $quantity);
>$formatted_price = sprintf('%0.2f', $pricecode);
> echo " cellspacing=\"5\"> width=\"40\">$pie
47 matches
Mail list logo