Search found 9 matches

by kebo
Wed Sep 13, 2006 10:42 am
Forum: PHP - Code
Topic: using <embed>....knowing when the sound ends
Replies: 3
Views: 473

using <embed>....knowing when the sound ends

I'm using this code to play sound on my page

Code: Select all

echo "<embed src='" . $mySound . "' width='300' height='15' autostart='true' > </embed>";
and I would like to know when the sound file is done playing. Is there any way to do this?
thanks
kevin
by kebo
Tue Aug 29, 2006 3:20 pm
Forum: PHP - Code
Topic: outputtiing text help still needed
Replies: 11
Views: 1010

Well pal, I could tell you what your mistakes are, but this isn't really going to help. You need to take a good book and start reading. You know the old saying about the man and the fish... Well i certainly would agree about the fish part, but in the real world, if someone works for me and spends 2...
by kebo
Tue Aug 29, 2006 2:55 pm
Forum: PHP - Code
Topic: outputtiing text help still needed
Replies: 11
Views: 1010

so that works to directect the output to the browser, but now I would like to direct the output to a file. So when I use $fo = fopen($fname, "w"); echo fwrite($fo ,"<td></td> "); the file contains <td></td> , but if I try $fo = fopen($fname, "w"); echo fwrite($fo ,"...
by kebo
Tue Aug 29, 2006 10:56 am
Forum: PHP - Code
Topic: outputtiing text help still needed
Replies: 11
Views: 1010

cool thanks oren...

^5

kevin
by kebo
Tue Aug 29, 2006 10:52 am
Forum: PHP - Code
Topic: outputtiing text help still needed
Replies: 11
Views: 1010

Oren wrote:You mean that you want to see on the screen with your browser:

<td></td>

Is that what you mean?
yes exactly
by kebo
Tue Aug 29, 2006 10:47 am
Forum: PHP - Code
Topic: outputtiing text help still needed
Replies: 11
Views: 1010

outputtiing text help still needed

How do I make php output "<td></td>" ?

When I use

Code: Select all

echo "<td></td>";
I guess it treated as an html string and I get no output.

thanks, second day learning php
kevin
by kebo
Mon Aug 28, 2006 8:00 pm
Forum: PHP - Code
Topic: html link
Replies: 5
Views: 480

so....lets see if I understand....

If I want to output html is php, I use echo and <....>....</> ?

what do I do if I want to output a "<" such as if I am creating an xml doc ?

for example, i want to ouptut somthing like

<Name> MyName </Name> ?

thanks
kevin
by kebo
Mon Aug 28, 2006 7:43 pm
Forum: PHP - Code
Topic: html link
Replies: 5
Views: 480

excellent...thanks for the quick reply.....
kevin
by kebo
Mon Aug 28, 2006 7:15 pm
Forum: PHP - Code
Topic: html link
Replies: 5
Views: 480

html link

new to php here.....please excuse the...well lack of knowledge of the obvious....


how would I insert a link such as

Code: Select all

echo <a href="www.google.com"> www.google.com</a>
into php code?
thanks
kevin