Need scroller that reads a php file
Need scroller that reads a php file
am 27.10.2007 03:55:32 von John
I need a scroller (java) or whatever that can read a php file and
display it in the script. Does anyone know of any?
I have searched the script sites but didn't find anything.
Re: Need scroller that reads a php file
am 27.10.2007 04:07:02 von Jerry Stuckle
John wrote:
> I need a scroller (java) or whatever that can read a php file and
> display it in the script. Does anyone know of any?
>
> I have searched the script sites but didn't find anything.
>
>
>
>
Why are you asking for a Java scroller in a PHP newsgroup?
Just because you're displaying PHP makes no difference. You could be
displaying "War and Peace".
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Need scroller that reads a php file
am 27.10.2007 04:50:54 von John
>Why are you asking for a Java scroller in a PHP newsgroup?
>
>Just because you're displaying PHP makes no difference. You could be
>displaying "War and Peace".
I said a java scroller or whatever.
I'm sure that there are other scripts beside java that can make things
scroll.
Re: Need scroller that reads a php file
am 27.10.2007 05:05:39 von luiheidsgoeroe
On Sat, 27 Oct 2007 04:50:54 +0200, John
wrote:
>
>> Why are you asking for a Java scroller in a PHP newsgroup?
>>
>> Just because you're displaying PHP makes no difference. You could be
>> displaying "War and Peace".
>
> I said a java scroller or whatever.
>
> I'm sure that there are other scripts beside java that can make things
> scroll.
And unless you're using PHP-GTK (which I would not recommend) PHP is not
one of them.
--
Rik Wasmus
Re: Need scroller that reads a php file
am 27.10.2007 06:14:28 von Jerry Stuckle
John wrote:
>
>> Why are you asking for a Java scroller in a PHP newsgroup?
>>
>> Just because you're displaying PHP makes no difference. You could be
>> displaying "War and Peace".
>
> I said a java scroller or whatever.
>
> I'm sure that there are other scripts beside java that can make things
> scroll.
>
So, why are you asking in a PHP group? PHP is server-side. What you
want is client-side.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Need scroller that reads a php file
am 27.10.2007 06:19:35 von John
Ok - actually what I need is something more simple.
I need a php file to be run and displayed inside of an html website.
I have tried to include and require command and pointed ot the file,
but for some reason it doesn't work.
Re: Need scroller that reads a php file
am 27.10.2007 10:18:13 von petersprc
Hi,
Try setting error_reporting(E_ALL) and reviewing your error_log file
for any notices.
On Oct 26, 11:19 pm, John wrote:
> Ok - actually what I need is something more simple.
>
> I need a php file to be run and displayed inside of an html website.
>
> I have tried to include and require command and pointed ot the file,
> but for some reason it doesn't work.
Re: Need scroller that reads a php file
am 27.10.2007 16:11:18 von Jerry Stuckle
John wrote:
> Ok - actually what I need is something more simple.
>
>
> I need a php file to be run and displayed inside of an html website.
>
> I have tried to include and require command and pointed ot the file,
> but for some reason it doesn't work.
>
>
>
>
In order to run PHP from a website, you must have PHP installed on the
server and your web server must be configured properly.
Do it correctly and it works. Do it incorrectly and it doesn't work.
Simple.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Need scroller that reads a php file
am 27.10.2007 20:30:22 von Macca
> > I need a php file to be run and displayed inside of an html
website.
A php file must be run on a server with php installed.
You could however display the php page on a html site by referencing
it in an iframe.
Re: Need scroller that reads a php file
am 27.10.2007 21:24:07 von John
On Sat, 27 Oct 2007 18:30:22 -0000, macca
wrote:
> > > I need a php file to be run and displayed inside of an html
>website.
>
>
>A php file must be run on a server with php installed.
>
>You could however display the php page on a html site by referencing
>it in an iframe.
Yes this is what I need.
Can you give me a simple iframe command to display information from a
php file please?
Thanks!
Re: Need scroller that reads a php file
am 27.10.2007 21:28:36 von Jerry Stuckle
John wrote:
> On Sat, 27 Oct 2007 18:30:22 -0000, macca
> wrote:
>
>>>> I need a php file to be run and displayed inside of an html
>> website.
>>
>>
>> A php file must be run on a server with php installed.
>>
>> You could however display the php page on a html site by referencing
>> it in an iframe.
>
>
> Yes this is what I need.
>
> Can you give me a simple iframe command to display information from a
> php file please?
>
>
> Thanks!
>
No matter what - this has nothing to do with PHP.
If you want HTML, try an HTML newsgroup. If you need help configuring
Apache, try an apache configuration newsgroup.
If you're looking for help with your PHP code, this is the group you need.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Need scroller that reads a php file
am 30.10.2007 00:44:56 von Macca
> Can you give me a simple iframe command to display information from a
> php file please?
height="100%" id="testframe" frameborder="0" style="overflow-x:
hidden" marginheight="0" marginwidth="0" />
You could also use an IP address if you dont have a domain name e.g.
src="http://217.0.0.1/php_page.php"