Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-20-2003, 10:34 PM
geniuscrew's Avatar
geniuscrew geniuscrew is offline
 
Join Date: Nov 2001
Location: UK
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default PHP help

I'm trying to change the way I make my site by using PHP. [ trying to anyway lol]

Please can someone tell me what's wrong with this.

Thanks


PHP Code:
<HTML>
<HEAD>
<TITLE>Spells Season 1
</TITLE>
</HEAD>

<BODY>


<b>Something Wicca This Way Comes<b><p>
<?php 

echo "<a href=\"spells1.php?action=101\">To become witches</a>

if (
$action=="101") {
echo 
"
Hear now the words of the witches
The secrets we hid in the night
The oldest of gods are invoked here
The great work of magic is sought
In this night 
and in this hour
I call upon the ancient power
Bring your powers to we sisters three
We want the power
Give us the power
.";
}

?>

</BODY>
</HTML>
Reply With Quote
  #2  
Old 01-20-2003, 10:46 PM
mr e's Avatar
mr e mr e is offline
 
Join Date: Dec 2001
Posts: 461
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well your missing the quote and semi colon on the first echo and you should use print, instead of echo
Reply With Quote
  #3  
Old 01-20-2003, 10:48 PM
geniuscrew's Avatar
geniuscrew geniuscrew is offline
 
Join Date: Nov 2001
Location: UK
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks. I'll try again

What's the main difference between print and echo?
Reply With Quote
  #4  
Old 01-21-2003, 01:25 AM
joelrotunda85 joelrotunda85 is offline
 
Join Date: Dec 2002
Posts: 44
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is none, to my knowledge.
Reply With Quote
  #5  
Old 01-21-2003, 03:26 AM
mr e's Avatar
mr e mr e is offline
 
Join Date: Dec 2001
Posts: 461
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

print just displays the info and echo returns true if it does false if not.....or something like that, try php.net, but i learned to use print because i used to do echo too
Reply With Quote
  #6  
Old 01-21-2003, 01:06 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

also specialchars like \n are treatened different in echo and print AFAIK
Reply With Quote
  #7  
Old 01-23-2003, 11:20 PM
geniuscrew's Avatar
geniuscrew geniuscrew is offline
 
Join Date: Nov 2001
Location: UK
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just when you thought I'd gone...lol

1. What is \n?
2. I have now managed to display a spell underneath the link when you click on it! [go me - this is a big advancement for me]

I have seen loads of files which have several <body> and <html> tags with a php page.

What I wanna do is do the same - when you click on a link, it will show the spell as if it's on a new page, ie just on it's own.

How would I do that?

Thanks for all your help guys
Reply With Quote
  #8  
Old 01-24-2003, 01:21 AM
mr e's Avatar
mr e mr e is offline
 
Join Date: Dec 2001
Posts: 461
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

so you want it all contained in one php file but looks like a different page?

PHP Code:
if (!$spell) { // this means if spell is not defined in the url display the links
print "<a href=\"thispage.php?spell=fire\">Fire</a>";
print 
"<a href=\"thispage.php?spell=water\">Water</a>";
}

if (
$spell == "fire") {
 
//Display HTML for fire spell
} elseif ($spell == "water") {
            
//Display HTML for water spell

this will always display the links but only display the spell info if the spell equals something in the url....do you get the genreral idea?

also, \n is like a <br> so you'd do

PHP Code:
print "This is first line \n This is second line"

edit: fixed stuff
Reply With Quote
  #9  
Old 01-24-2003, 01:35 AM
geniuscrew's Avatar
geniuscrew geniuscrew is offline
 
Join Date: Nov 2001
Location: UK
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes I totally get it!

It's just a case of where to put the code you've stated :/

ie. where do the <HTML> and <BODY> tags etc. go?
Reply With Quote
  #10  
Old 01-24-2003, 01:40 AM
mr e's Avatar
mr e mr e is offline
 
Join Date: Dec 2001
Posts: 461
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

where i have the display html part, and you can open the tags on both because it will only execute one of the options so it won't duplicate any of the tags

so you could do

PHP Code:
<?php

print "<a href=\"thispage.php?spell=fire\">Fire</a>";
print 
"<a href=\"thispage.php?spell=water\">Water</a>";
//repeat as needed


if ($spell == "fire") {
  
//Do fire HTML, ex 
print "<html><body>This is fire stuff</body></html>";
} elseif (
$spell == "water") {
             
//Do water HTML, ex 
             
print "<html><body>This is water stuff</body></html>";
}
this will make a basic page with links that will stay at the top and other info that will only appear if the spell variable equals something


edit: finished editing
Reply With Quote
Reply


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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:22 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04068 seconds
  • Memory Usage 2,257KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete