SunQuest
           Client Side Things
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsOther TechnologiesClient Side Things

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here!
  #1  
Old February 27th, 2004, 03:29 AM
sayee3k1 sayee3k1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 sayee3k1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
displaying pages in php

hai

I am new to php and need some suggestions

A php page such that it shuld have the some links on the top

world | windows | linux | DOS|

and every time we click on any of these links the corresponding pages should be displayed......

tat is the a page snippet corresponding the windows url shuld be displayed if i click windows ..........


consider a php page and i am callling another php (say sub.php)into it

now in the sub.php i have the links

world | windows | linux | DOS|

and i want that when i click on that i shuld get the corresponding snippets .

I tried to work out the code but not working perfectly

any kind of suggestion will be helpful

thanks

ur's
sai


Reply With Quote
  #2  
Old February 27th, 2004, 03:30 AM
nawlej nawlej is offline
Contributing User
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Dallas, Tx. USA
Posts: 2,008 nawlej User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 7 m 51 sec
Reputation Power: 4
RE: displaying pages in php

So why do you want to use PHP for this? Seems like you would just need html.....

Reply With Quote
  #3  
Old February 27th, 2004, 03:38 AM
sayee3k1 sayee3k1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 sayee3k1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: displaying pages in php

hai eric

how can i do that in html

I want to call a php snippet every time .......

any suggestion will be helpful

urs
sai

Reply With Quote
  #4  
Old February 27th, 2004, 03:42 AM
nawlej nawlej is offline
Contributing User
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Dallas, Tx. USA
Posts: 2,008 nawlej User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 7 m 51 sec
Reputation Power: 4
RE: displaying pages in php

Have you ever worked with html?

Reply With Quote
  #5  
Old February 27th, 2004, 03:43 AM
CodeKadiya CodeKadiya is offline
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Colombo,Sri Lanka
Posts: 2,313 CodeKadiya User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 4
Send a message via Yahoo to CodeKadiya
RE: displaying pages in php

:laugh:

If you like to work with PHP so much, this is that way
php Code:
Original - php Code
  1.  
  2. echo "<a href='http://www.domain.com/world.php'>world</a> | ";
  3. echo "<a href='http://www.domain.com/windows.php'>windows</a> | ";
  4. echo "<a href='http://www.domain.com/linux.php'>linux</a> | ";
  5. echo "<a href='http://www.domain.com/dos.php'>DOS</a> | ";
:uhoh: Basic HTML stuff...

Reply With Quote
  #6  
Old February 27th, 2004, 03:43 AM
sayee3k1 sayee3k1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 sayee3k1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
displaying pages in php




Reply With Quote
  #7  
Old February 27th, 2004, 03:46 AM
CodeKadiya CodeKadiya is offline
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Colombo,Sri Lanka
Posts: 2,313 CodeKadiya User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 4
Send a message via Yahoo to CodeKadiya
RE: displaying pages in php

nawlej, Simply we gotta love 'em. (as Matt says) :laugh: another davood

sayee3k1,
Hey friend!!! You are here to get help from someone. Pls try to be kind to other here.. we have a friendly atmosphere in these forums. If you don't like the place, you can leave! no one here to catch you.

Reply With Quote
  #8  
Old February 27th, 2004, 03:49 AM
nawlej nawlej is offline
Contributing User
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Dallas, Tx. USA
Posts: 2,008 nawlej User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 7 m 51 sec
Reputation Power: 4
RE: displaying pages in php

Yes....exactly, I wasnt aiming to make you mad, I was just trying to get a feel for what you already knew, so I could better assist you. No need for name calling

Reply With Quote
  #9  
Old February 27th, 2004, 03:50 AM
sayee3k1 sayee3k1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 sayee3k1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
oh.......

hai kod kadiya

no tat doesn't work as the i have a php page(say main.php)
in which i am calling a another php page(say blog.php)

so when i click on the links i have on the blog.php

i want that only the blog.php shuld change and display the apropriate link.

so if i have sai | kod

when i click on sai it display the sai's info and id kod clicked kod's info is displayed

thanks for helping me out.....

urs
sai


Reply With Quote
  #10  
Old February 27th, 2004, 03:52 AM
sayee3k1 sayee3k1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 sayee3k1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
sorrry for that


Reply With Quote
  #11  
Old February 27th, 2004, 03:55 AM
CodeKadiya CodeKadiya is offline
Codewalkers Regular (2000 - 2499 posts)
 
Join Date: Apr 2007
Location: Colombo,Sri Lanka
Posts: 2,313 CodeKadiya User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 4
Send a message via Yahoo to CodeKadiya
RE: displaying pages in php

Now you solved your problem.. And don't talk like that here in this forums again.. This is not the place for that! IF you want to get help, talk politely, you'll be reawared with great support

Reply With Quote
  #12  
Old February 27th, 2004, 03:56 AM
sayee3k1 sayee3k1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 sayee3k1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
heyphp

I think now no one will be replying to my msg.......

hmmmmmmmm

yes it is really funny but i possible do forgive and make me a part of ur phorum

thanks

urs
sai

Reply With Quote
  #13  
Old February 27th, 2004, 03:56 AM
sayee3k1 sayee3k1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 sayee3k1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
thanks

thanks for that !!!!!!!

Reply With Quote
  #14  
Old February 27th, 2004, 03:59 AM
Nicky's Avatar
Nicky Nicky is offline
Contributing User
Codewalkers Novice (500 - 999 posts)
 
Join Date: Apr 2007
Location: Neverland
Posts: 606 Nicky User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 3 m 26 sec
Reputation Power: 2
RE: displaying pages in php

so have you solved your problem ?

Reply With Quote
  #15  
Old February 27th, 2004, 04:01 AM
sayee3k1 sayee3k1 is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 27 sayee3k1 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
hey

no i have not !!!!

how will that work ????


Reply With Quote
Reply

Viewing: Codewalkers ForumsOther TechnologiesClient Side Things > displaying pages in php


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap&nb