Paul M Foster wrote:
> On Mon, Jan 26, 2009 at 12:53:55PM -0600, Micah Gersten wrote:
>
>
>> Paul M Foster wrote:
>>
>
>
>
>
>>> Please show me how *without Javascript* and *only with PHP* you can
>>> change the content on a page interactively as the user described
>>> *without* reloadi
Kevin,
Your link, with some modifications to fit my site layout, worked just as I
was hoping for.
Thank you very much.
--
"Kevin Waterson" wrote in message
news:20090126092451.7aab63ff.ke...@phpro.org...
>
>> > Sorry, I am also new to the etiquette of these mail lists.
>
> Hope this will ge
On Mon, Jan 26, 2009 at 12:53:55PM -0600, Micah Gersten wrote:
> Paul M Foster wrote:
> >
> > Please show me how *without Javascript* and *only with PHP* you can
> > change the content on a page interactively as the user described
> > *without* reloading the whole page. Xajax contains Javascrip
Paul M Foster wrote:
> On Mon, Jan 26, 2009 at 12:03:20AM -0600, Micah Gersten wrote:
>
>
>> Paul M Foster wrote:
>>
>>>
>>> In case this has yet to be answered to your satisfaction...
>>>
>>> Your page will *have* to reload when the user presses the button, but
>>> the majority of content
Bastien Koert wrote:
> On Mon, Jan 26, 2009 at 9:25 AM, Paul M Foster wrote:
>
>> On Mon, Jan 26, 2009 at 12:03:20AM -0600, Micah Gersten wrote:
>>
>>> Paul M Foster wrote:
In case this has yet to be answered to your satisfaction...
Your page will *have* to reload when the use
On Mon, Jan 26, 2009 at 9:25 AM, Paul M Foster wrote:
> On Mon, Jan 26, 2009 at 12:03:20AM -0600, Micah Gersten wrote:
>
> > Paul M Foster wrote:
> > >
> > > In case this has yet to be answered to your satisfaction...
> > >
> > > Your page will *have* to reload when the user presses the button, b
On Mon, Jan 26, 2009 at 12:03:20AM -0600, Micah Gersten wrote:
> Paul M Foster wrote:
> >
> > In case this has yet to be answered to your satisfaction...
> >
> > Your page will *have* to reload when the user presses the button, but
> > the majority of content can look the same, except for the con
tedd schrieb:
At 11:56 AM +0100 1/25/09, Carlos Medina wrote:
Hi Ashley,
yes this is the right answer. The "Problem" is not a PHP Question but
a programming question. To be clear: i think, the "Problem" can you
solve, if you get two or tree books or tutorials about the programming
language. Y
Paul M Foster wrote:
>
> In case this has yet to be answered to your satisfaction...
>
> Your page will *have* to reload when the user presses the button, but
> the majority of content can look the same, except for the content you
> want to change.
>
>
This is absolutely not true. You can m
You may or may not find this worth reading:
http://richardlynch.blogspot.com/2007/07/php-in-html.html
Bottom line is that what you are trying to do can't be done in PHP.
You'll have to resort to Javascript and DIV tags with display: none;
switching to display: block;
--
Some people ask for gif
Christopher W wrote:
At least I hope it is simple...
I am trying to get an HTML menu link to set a variable's value. For
example, when a user clicks the "Home" button on my page it would cause
$page = "home"; or clicking the "About Us" button will set $page="about_us";
etc.
I think this sh
> > Sorry, I am also new to the etiquette of these mail lists.
Hope this will get you started,
http://www.phpro.org/tutorials/Introduction-to-PHP-templating.html
Kevin
http://phpro.org
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Sun, Jan 25, 2009 at 02:29:50AM -0500, Christopher W wrote:
> Sorry, I am also new to the etiquette of these mail lists.
>
> Anyway what I was attempting to do, in the full picture, was be able to just
> switch the text in the text area without actually changing pages. For
> example, if the u
On Sun, Jan 25, 2009 at 02:40:08AM -0500, Christopher W wrote:
> Mr. Kubler,
>
> Thank you for the help. I have to admit, I am still in over my head, I
> think. Perhaps I should just stick to static pages...
>
> Anyway what I was attempting to do, in the full picture, was be able to just
> swi
On Jan 24, 2009, at 11:06 PM, Christopher W wrote:
At least I hope it is simple...
I am trying to get an HTML menu link to set a variable's value. For
example, when a user clicks the "Home" button on my page it would
cause
$page = "home"; or clicking the "About Us" button will set
$page="
On Jan 25, 2009, at 9:19 AM, tedd wrote:
At 11:56 AM +0100 1/25/09, Carlos Medina wrote:
Hi Ashley,
yes this is the right answer. The "Problem" is not a PHP Question
but a programming question. To be clear: i think, the "Problem" can
you solve, if you get two or tree books or tutorials abo
At 11:56 AM +0100 1/25/09, Carlos Medina wrote:
Hi Ashley,
yes this is the right answer. The "Problem" is not a PHP Question
but a programming question. To be clear: i think, the "Problem" can
you solve, if you get two or tree books or tutorials about the
programming language. You should *try*
At 2:29 AM -0500 1/25/09, Christopher W wrote:
My problem is that I can't figure out how to get the link-click to assign
the value to the variable. I didn't try any php for that end because I
really didn't know where to begin.
It sounds to me like you're trying to create a smart menu. Perhaps
Hi Ashley,
yes this is the right answer. The "Problem" is not a PHP Question but a
programming question. To be clear: i think, the "Problem" can you solve,
if you get two or tree books or tutorials about the programming
language. You should *try* to solve the problem self and then to post a
qu
On Sun, 2009-01-25 at 10:51 +0100, Carlos Medina wrote:
> Michael Kubler schrieb:
> > The easiest way would be to use GET parameters (i.e data in the actual
> > URL).
> > There are a number of ways you can structure a HTML link to get what you
> > want.
> > You can have something basic (but not v
Christopher W schrieb:
Mr. Kubler,
Thank you for the help. I have to admit, I am still in over my head, I
think. Perhaps I should just stick to static pages...
Anyway what I was attempting to do, in the full picture, was be able to just
switch the text in the text area without actually cha
Michael Kubler schrieb:
The easiest way would be to use GET parameters (i.e data in the actual
URL).
There are a number of ways you can structure a HTML link to get what you
want.
You can have something basic (but not very elegant looking), like
Home
Then in your index.php code you'd probab
Mr. Kubler,
Thank you for the help. I have to admit, I am still in over my head, I
think. Perhaps I should just stick to static pages...
Anyway what I was attempting to do, in the full picture, was be able to just
switch the text in the text area without actually changing pages. For
example
Sorry, I am also new to the etiquette of these mail lists.
Anyway what I was attempting to do, in the full picture, was be able to just
switch the text in the text area without actually changing pages. For
example, if the user clicks "About Us" (from the home page) the page doesn't
change, jus
2009/1/24 Christopher W :
> At least I hope it is simple...
>
> I am trying to get an HTML menu link to set a variable's value. For
> example, when a user clicks the "Home" button on my page it would cause
> $page = "home"; or clicking the "About Us" button will set $page="about_us";
> etc.
>
> I
The easiest way would be to use GET parameters (i.e data in the actual URL).
There are a number of ways you can structure a HTML link to get what you
want.
You can have something basic (but not very elegant looking), like
Home
Then in your index.php code you'd probably have something like
26 matches
Mail list logo