1. URL
http://pub.qmoon.net/WMSStatus/WMS.asmx/IRadioGetCurrentPublishPoint
2. Call method
HTTP GET:
GET / WMSStatus/WMS.asmx/IRadioGetCurrentPublishPoint HTTP/1.1
Host: pub.qmoon.net
3. return (string)
http://www.qmoon.net/";>mms://pub.qmoon.net/audio
How can I listen to the audio stream wi
anything after the question mark will get ignored by the browser. Except
that the browser will think that it is a new URL that it has never seen
before and it will call to the server for a fresh copy of the file.
Another options is instead of a question mark use a forward slash. This
may be
Skip Evans wrote:
> Hey all,
>
> I have an HTML template file I read into a PHP
> script and then after supplying dynamic data I
> send the template to the browser with
>
> echo $html;
>
> The HTML template contains many JS files in the
> ... section referenced like this:
>
> type="text/javas
Hi,
I'm trying to send emails with embed and dynamic images: a normal tell a
friend feature which sends the email with item's data: author, title,
image-cover, etc.
Ideas PEAR and mime classes apart?
thanks
iñigo
--
Iñigo Medina García
Librería Díaz de Santos
Hello,
I'm adding functionality to allow a user to copy data on a page to the
clipboard using JS. This can be done simply with:
window.clipboardData.setData('Text','String to copy to clipboard');
The string from PHP needs to contain line breaks when copied into the
clipboard. This works when I
Richard Heyes wrote:
>> When you do an explicit "refresh" or "reload" in your browser, it
>> should ignore whatever it's got cached and refetch your javascript
>> files regardless.
>
> With Interweb Explorer you need to hold down CTRL and CLICK on refresh
> (as opposed to pressing CTRL+R say) to
> ...
This is a PHP function that escapes strings so you can output them as a
JS string. IIRC it assumes you're using single quotes to enclose your
strings.
/**
* Function to appropriately escape a string so it can be output
* into javascript code.
*
* @param string $stri
When you do an explicit "refresh" or "reload" in your browser, it should
ignore whatever it's got cached and refetch your javascript files
regardless.
With Interweb Explorer you need to hold down CTRL and CLICK on refresh
(as opposed to pressing CTRL+R say) to get a fresh copy. I guess it
dep
Mark Weaver wrote:
Hi all,
I've put this off as long as possible, however I think I've reached an
impasse.
I've got an application that I've been writing. One of the modules for
this app is an event calendar. I've got the calendar to the place where
it displays the current month as well as
>
> This is a PHP function that escapes strings so you can output them as a
> JS string. IIRC it assumes you're using single quotes to enclose your
> strings.
>
> /**
> * Function to appropriately escape a string so it can be output
> * into javascript code.
> *
> * @p
Hi,
I am attempting to set up a group webmail client wherein certain emails
can be stored separately from the normal mailbox system and retrieved
for viewing by any user via a separate mechanism to the normal client.
According to the documentation, I should be able to connect to this
store u
How to import the stylesheet from a .odt file and modify it and use it for
creating a document.
Can we use xsl functions for this process. If yes, then what are the required
xsl functions?
what do you wanna do ?? just a bridge? or try to play it?? in that
case you can't.
i think you should get the streamming and try to play it with flash
saludos
On Thu, May 29, 2008 at 4:05 AM, Shelley <[EMAIL PROTECTED]> wrote:
> 1. URL
> http://pub.qmoon.net/WMSStatus/WMS.asmx/IRadioGetCurrentPub
Priyanka wrote:
> How to import the stylesheet from a .odt file and modify it and use it
> for creating a document.
>
> Can we use xsl functions for this process. If yes, then what are the
> required xsl functions?
Doesn't really sound like a PHP-related question, but yes it is all
possible. Th
Am 2008-05-28 08:40:09, schrieb Philip Thompson:
> It's amazing how someone so involved in security would provide any of
> this information. Name, job, location, phone numbers, Internet
> contact. You might as well have given the name of your children as
> well. Nevermind, I'll go find that o
Priyanka <[EMAIL PROTECTED]> wrote:
> How to import the stylesheet from a .odt file and modify it and use it for
> creating a document.
>
> Can we use xsl functions for this process. If yes, then what are the required
> xsl functions?
EASY!!! Just STFW for XSL and ODT
This might help: h
Michelle Konzack <[EMAIL PROTECTED]> wrote:
> Am 2008-05-28 08:40:09, schrieb Philip Thompson:
> > It's amazing how someone so involved in security would provide any of
> > this information. Name, job, location, phone numbers, Internet
> > contact. You might as well have given the name o
On Thu, 2008-05-29 at 07:37 -0400, Mark Weaver wrote:
> Mark Weaver wrote:
> > Hi all,
> >
> > I've put this off as long as possible, however I think I've reached an
> > impasse.
> >
> > I've got an application that I've been writing. One of the modules for
> > this app is an event calendar. I'
On Thu, May 29, 2008 at 6:11 AM, Iñigo Medina García <
[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm trying to send emails with embed and dynamic images: a normal tell a
> friend feature which sends the email with item's data: author, title,
> image-cover, etc.
>
> Ideas PEAR and mime classes apart?
>
>
Bastien Koert wrote:
> You'll need to create a HTML email, and then embed the image with the
> tag, using the entire path to the image as the source attribute
Not necessarily, images may simply be sent as an attachment with
type "image/jpeg" etc.
/Per Jessen, Zürich
--
PHP General Mailing L
Per Jessen wrote:
Bastien Koert wrote:
You'll need to create a HTML email, and then embed the image with the
tag, using the entire path to the image as the source attribute
Not necessarily, images may simply be sent as an attachment with
type "image/jpeg" etc.
/Per Jessen, Zürich
I ha
You'll need to create a HTML email, and then embed the image with the
tag, using the entire path to the image as the source attribute
Not necessarily, images may simply be sent as an attachment with
type "image/jpeg" etc.
/Per Jessen, Zürich
I haven't done it in a while but I believe you ne
Robert Cummings wrote:
function setCal($h=0,$m=0,$s=0,$offset,$dayVal=1){
$stamp = date('U',mktime($h,$m,$s, $offset,$dayVal,date('Y')));
I don't really want to say "I told you so", but that's one of the two
lines I denoted as
I have a snippet of code like this which works fine in PHP4.
$secs = array();
foreach($_GET['sids'] as $sid){
$secs[$sid] = new CustomSecurity();
$secs[$sid]->set(array('customSecurityID' => $sid));
}
However, in PHP5 (5.2.4) the array has the proper keys in it but all of
the array values
try doing this
$secs = array();
foreach($_GET['sids'] as $sid){
$obj = null;
$obj = new CustomSecurity();
$obj->set(array('customSecurityID' => $sid));
$secs[] = $obj;
}
i just don't know if the operator -> it's working wll over object arrays
saludos
On Thu, May 29, 2008 at 1:31 PM, Davi
Nope. Same performance. I originally had something like this (minus
the assigment to null) but I thought the confusion was in the variable
assignment so I went directly to the array. I've tried your code
exactly and get the same thing, assignment to null doesn't help.
Dave
Gabriel Sosa wro
I thought this line it may help, not actually the null
$secs[] = $obj;
i will still researching about this
On Thu, May 29, 2008 at 2:08 PM, David Moylan <[EMAIL PROTECTED]> wrote:
> Nope. Same performance. I originally had something like this (minus the
> assigment to null) but I thought the c
Well, I did that except I'm providing the key explicitly. However, I've
tried it now without the key and it's the same except for the key value.
Very frustrating.
Dave
Gabriel Sosa wrote:
I thought this line it may help, not actually the null
$secs[] = $obj;
i will still researching about
On Thu, 2008-05-29 at 14:01 -0300, Gabriel Sosa wrote:
> try doing this
>
> $secs = array();
> foreach($_GET['sids'] as $sid){
> $obj = null;
> $obj = new CustomSecurity();
> $obj->set(array('customSecurityID' => $sid));
> $secs[] = $obj;
> }
No, no, no. If it's a reference issue you need to
What I want to do is find all links in an html file. I have the pattern
below. It works as long as there is only one link on a line and as long
as the whole link is one line. It seems there should be a way to get
this to work with more than one link on a single line. The work around
I have
On Thu, 2008-05-29 at 13:07 -0500, Chris W wrote:
> What I want to do is find all links in an html file. I have the pattern
> below. It works as long as there is only one link on a line and as long
> as the whole link is one line. It seems there should be a way to get
> this to work with more
my page include some javascript to control the play,rewind..and other functions
of the swffile showEdit.swf, it works in Safari/IE with flash-plugin 8/9
installed but not works in Firefox with flash plugin 9(would reports
obj.play() is not a function, is any one point out what is the problem
On Thu, 2008-05-29 at 14:20 -0400, Robert Cummings wrote:
> On Thu, 2008-05-29 at 13:07 -0500, Chris W wrote:
> > What I want to do is find all links in an html file. I have the pattern
> > below. It works as long as there is only one link on a line and as long
> > as the whole link is one line
[EMAIL PROTECTED] wrote:
>
> my page include some javascript to control the play,rewind..and other
> functions of the swffile showEdit.swf, it works in Safari/IE with
> flash-plugin 8/9 installed but not works in Firefox with flash plugin
> 9(would reports obj.play() is not a function,
i need to validate a field in a form where a user enters a reference number
this can be letters, numbers and special characters also so i have not
written any special preg match as the username is a combination. the only
check i am doing is if there are any white spaces and if a user simple
presses
i have implemented a way to avoid sql injection from the php website from
this url
http://in.php.net/mysql_real_escape_string from the "Example #3 A "Best
Practice" query" section of this page
following are the steps i have followed after the form values are submitted
to a php file.
step 1.
if(
my question is about validation using php. i am validating a username which
a user would enter and clicks on a image to find
if that username is available. example if a user enters abc#123 php file is
reading this value as abc ONLY which i do not
want instead the php file should read as abc#123.
YOU can write (') characters in the database.. that fine..
mysql_real_escape_string avoid injections doing that: escaping characters
then when you put in a form
abc'''def
the query will be
INSERT . (name.) VALUES ( 'abc\'\'\'def'
each ' => \'
for me the steps are right
saludos
O
So the user comes to the site and they're presented with a log in page.
They enter their username and password and php checks a mysql database for
a matching username and password.
In the case of a match, php then sets a cookie on their browser with a
value of 1 for authenticated and 0 for not auth
Solved this. I tried setting a class variable directly and didn't have
the same issue (should have tried that long ago). So that told me that
my error was somewhere in some lower level code when I initialize my
objects. I tracked it down to a problem where I wasn't cloning properly
when I ne
Also, for the record: Referring to the objects in the array directly
works fine. So, syntax like
$secs[$sid] = new CustomSecurity();
$secs[$sid]->load($sid);
is fine, as I would expect. Don't have to define it to a simple
variable like $obj in the code below. Further, if I then do
$sec =
On Thu, 2008-05-29 at 14:20 -0600, DeadTOm wrote:
> So the user comes to the site and they're presented with a log in page.
> They enter their username and password and php checks a mysql database for
> a matching username and password.
> In the case of a match, php then sets a cookie on their brow
On Thu, 29 May 2008 14:20:02 -0600 (MDT)
"DeadTOm" <[EMAIL PROTECTED]> wrote:
> So the user comes to the site and they're presented with a log in
> page. They enter their username and password and php checks a mysql
> database for a matching username and password.
> In the case of a match, php the
At 8:31 PM +0200 5/28/08, Michelle Konzack wrote:
I have customers in Iran, Turkey, Syria, Lebanon, Moroco, Germany and
Swiss.
Sounds like a sandwich. :-)
Cheers,
tedd
--
---
http://sperling.com http://ancientstones.com http://earthstones.com
--
PHP General Mailing List (http://
On Thu, May 29, 2008 at 01:07:11PM -0500, Chris W wrote:
> What I want to do is find all links in an html file. I have the pattern
> below. It works as long as there is only one link on a line and as long
> as the whole link is one line. It seems there should be a way to get
> this to work
Hello,
I have a function that picks up a random entry from a file consisting
of city names, each name on a separate line. The random value is
generated by rand() before fseek()ing to the position determined by
it. The problem is that when using fgets() to get a random line, it
returns a part of th
A web site deploys what I think are UTF characters to mask email addresses.
Is there there a php function I can use to generate this? Or was this
hand-done?
It is crackable, but a darned good stab at the problem of spiders at the
same.
Any feedback, info or code would be appreciated,
John
John
John Taylor-Johnston wrote:
A web site deploys what I think are UTF characters to mask email
addresses.
Is there there a php function I can use to generate this? Or was this
hand-done?
It is crackable, but a darned good stab at the problem of spiders at
the same.
Any feedback, info or code wou
You could look at the email cloaking routine that Joomla uses.
Here's a starting point:
http://dev.joomla.org/component/option,com_jd-wiki/Itemid,/id,references:joomla.framework:html:jhtmlemail-cloak/
-TG
- Original Message -
From: John Taylor-Johnston <[EMAIL PROTECTED]>
To: PHP-Genera
On Thu, May 29, 2008 at 2:07 PM, Chris W <[EMAIL PROTECTED]> wrote:
> What I want to do is find all links in an html file. I have the pattern
> below. It works as long as there is only one link on a line and as long as
> the whole link is one line. It seems there should be a way to get this to
>
On Thu, May 29, 2008 at 8:13 PM, Eric Butera <[EMAIL PROTECTED]> wrote:
> Why not use DOMDocument with getElementsByTagName('href') [1]
>
> http://us2.php.net/manual/en/domdocument.getelementsbytagname.php
>
Sorry there was an error in that. It felt wrong when I sent it so I
looked again. Here i
Ok.
lists-php wrote:
that's not UTF, rather just the html representation of the ascii
codes for the characters. [someone else has already pointed you to an
ascii table.]
when put in the context of the "mailto:"; it's actually fairly easy
for a bot to identify and decode (i'm not saying that
Usamah M. Ali wrote:
> Hello,
>
> I have a function that picks up a random entry from a file consisting
> of city names, each name on a separate line. The random value is
> generated by rand() before fseek()ing to the position determined by
> it. The problem is that when using fgets() to get a ran
On Fri, May 30, 2008 at 3:38 AM, Chris <[EMAIL PROTECTED]> wrote:
> fseek doesn't go to the start of a line, it goes to a particular byte -
> so that's where the problem lies (not with fgets). There's no function
> (that I could see) which would go to the start of the line based on that
> offset (I
> I just need to figure out why when using fgets() with fseek() &
> rand(), the script returns partial strings form the city names.
Because fseek doesn't necessarily put you at the start of a line.
It puts you anywhere (which could be the start, middle, 3 chars from the
end) according to the nu
On Fri, May 30, 2008 at 4:21 AM, Chris <[EMAIL PROTECTED]> wrote:
>
>
>> I just need to figure out why when using fgets() with fseek() &
>> rand(), the script returns partial strings form the city names.
>
> Because fseek doesn't necessarily put you at the start of a line.
>
> It puts you anywhere
This might be a dumb question with an obvious answer somewhere, but
I'm wondering if it's possible to build php extensions as shared
objects that plug into the PHP binary much like an apache shared
module plugs into apache.
Is PECL close to this?
Sorry if this is obvious. Searches on the topic a
Weston C wrote:
> This might be a dumb question with an obvious answer somewhere, but
> I'm wondering if it's possible to build php extensions as shared
> objects that plug into the PHP binary much like an apache shared
> module plugs into apache.
Yes.
See http://www.php.net/dl (though a lot of
On Thu, May 29, 2008 at 7:11 PM, Chris <[EMAIL PROTECTED]> wrote:
> See http://www.php.net/dl (though a lot of hosts disable this
> functionality for security reasons).
Fortunately, I'll have full control of the hosting environment in the
context this matters. :)
dl is definitely interesting, bu
On 5/29/08, Weston C <[EMAIL PROTECTED]> wrote:
> Fortunately, I'll have full control of the hosting environment in the
> context this matters. :)
>
> dl is definitely interesting, but I'm worried that runtime invocation
> might mean performance hits. Is there a way to do load/startup time
> incl
My test result is that it works on Windows platform, but not on Linux.
Maybe that's because it is Microsoft Media Services protocol?
Whatever, I can not hear anything on Firefox 3 Beta 5 on Ubuntu.
2008/5/29 Gabriel Sosa <[EMAIL PROTECTED]>:
> what do you wanna do ?? just a bridge? or try to pla
Hello all!
Had some big problems with XAMPP crashing my windows (Vista) laptop 8 times out
or 10 (actual figures) as I started XAMPP so have shifted over to WAMPSERVER2
So far so good, no crash... but their website seems to be down and need one
small tidbit... if anyone of you are using WAMPSERVE
Ryan S wrote:
> Hello all!
> Had some big problems with XAMPP crashing my windows (Vista) laptop 8 times
> out or 10 (actual figures) as I started XAMPP so have shifted over to
> WAMPSERVER2
> So far so good, no crash... but their website seems to be down and need one
> small tidbit... if anyone
Seen that in the manual. I'll need a routine of some sort I guess.
I'll get my cookie cutters out tomorrow and see what I can create.
I make cool gingerbread men, for a dude.
**htmlentities() does most of what I want, sort of.
**lists-php wrote:
you might try looking at the php manual. start wit
Hello, I'm from Chile, so, I don't write great in English.
My cuestion is:
I'm programming a Website where you can see the files that you have in a
remote PC. (In my University Computer Room)
I don't know how to Download a file from the remote pc to my computer
and, also, how to Upload a file
Hi Bastien,
thanks for the tip. I've already done it and it didn't run.
But I'll check it again.
iñigo
> On Thu, May 29, 2008 at 6:11 AM, Iñigo Medina García <
> [EMAIL PROTECTED]> wrote:
>
>> Hi,
>>
>> I'm trying to send emails with embed and dynamic images: a normal tell a
>> friend feature
Gonzalo Bettancourt wrote:
Hello, I'm from Chile, so, I don't write great in English.
My cuestion is:
I'm programming a Website where you can see the files that you have in a
remote PC. (In my University Computer Room)
I don't know how to Download a file from the remote pc to my computer
an
Hi Per,
yep, it's true, playing with mime it can be sent as attachment, but I
don't want that but embed.
iñigo
> Bastien Koert wrote:
>
>> You'll need to create a HTML email, and then embed the image with the
>> tag, using the entire path to the image as the source attribute
>
> Not necess
Hi Shawn,
ey, that "content-disposition: inline" is new for me. Maybe it's a
solution. I'll check it and tell us.
thanks
iñigo
> Per Jessen wrote:
>> Bastien Koert wrote:
>>
>>> You'll need to create a HTML email, and then embed the image with the
>>> tag, using the entire path to the image
Iñigo Medina García wrote:
> Hi Bastien,
>
> thanks for the tip. I've already done it and it didn't run.
> But I'll check it again.
>
> iñigo
>
>> On Thu, May 29, 2008 at 6:11 AM, Iñigo Medina García <
>> [EMAIL PROTECTED]> wrote:
>>
>>> Hi,
>>>
>>> I'm trying to send emails with embed and dyn
Hi,
I'm trying to learn a PHP by myself...and i need a help.
I have learned all the basic but i dont know how to implement the stuff.
Can you please guys help me out give me a small site in PHP so that i can
study and learn.
thank you.
Hi Richard,
yep, i know your htmlMimeMail5. Ey, it's a good work! :-)
But in this case it would be easier for my work-team not to deal with
objects-jargon.
thanks anyway
iñigo
You'll need to create a HTML email, and then embed the image with the
tag, using the entire path to the i
Hi Chris,
yep, phpmailer is a good work too. But it works the same i said about
htmlMimeMail5.
iñigo
> Iñigo Medina García wrote:
>> Hi Bastien,
>>
>> thanks for the tip. I've already done it and it didn't run.
>> But I'll check it again.
>>
>> iñigo
>>
>>> On Thu, May 29, 2008 at 6:11 AM, I
Iñigo Medina García wrote:
> Hi Per,
>
> yep, it's true, playing with mime it can be sent as attachment, but I
> don't want that but embed.
>
>iñigo
OK, then you need to revisit what Bastien said. However, instead of
referring to an external image, you need to use
src="cid:" where
74 matches
Mail list logo