xcoderx Posted September 5, 2009 Share Posted September 5, 2009 need to make this structure using <fremeset rows="20%,30%,50%"> then <frame etc etc i got no clue how i get it done :'( this is how it must look Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/ Share on other sites More sharing options...
PugJr Posted September 5, 2009 Share Posted September 5, 2009 Nice picture, made it with MS paint? Oh also, why are you copy righting that image? And why 2002-2004? Aren't we in 2009? Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-912960 Share on other sites More sharing options...
.josh Posted September 5, 2009 Share Posted September 5, 2009 seriously, there are like thousands of free templates out there that look exactly like that. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-912962 Share on other sites More sharing options...
xcoderx Posted September 5, 2009 Author Share Posted September 5, 2009 yes its in paint and copyright is given like that so i wrote how it is given, i managed it like <html> <frameset ="20%,30%,50%"> <frameset cols="30%,70%"> </framese> help me please Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-912967 Share on other sites More sharing options...
Daniel0 Posted September 5, 2009 Share Posted September 5, 2009 Why do you want to frames? That's been outdated for several years. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-912997 Share on other sites More sharing options...
xcoderx Posted September 5, 2009 Author Share Posted September 5, 2009 i do not want bro its given my the teacher as project will someone help me please Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913005 Share on other sites More sharing options...
zq29 Posted September 5, 2009 Share Posted September 5, 2009 We're not here to do your homework for you. Learn how to use frames, then unlearn it. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913077 Share on other sites More sharing options...
Adam Posted September 5, 2009 Share Posted September 5, 2009 We're not here to do your homework for you. Learn how to use frames, then unlearn it. Haha! I'd enquire as to why they're teaching you this to be honest.. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913090 Share on other sites More sharing options...
redarrow Posted September 5, 2009 Share Posted September 5, 2009 There no way, a teacher ask you to use frames, as all good web design teachers no frames are a no. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913110 Share on other sites More sharing options...
redarrow Posted September 5, 2009 Share Posted September 5, 2009 next time learn html. <html> <head> <title>This is where the title of the page goes teacher.</title> </head> <table border="4" width="100%"> <tr> <td align='center'> my logo </td> <td align='center'> <h1>This is the header of the page teacher!</h1> </td> <table> <table border="4" width="100%"> <tr> <td align="center"> link 1 <br> link 2 <br> link 3 <br> link 4 <br> link 5 </td> <td valign="top" align="center"> content </td> </tr> </table> <table border="4" width="100%"><td align="center"> link 1 </td><td align="center"> link 2 </td><td> link 3 </td><td align="center"> link 4 </td><td align="center"> link 5</td></table> </html> Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913114 Share on other sites More sharing options...
.josh Posted September 5, 2009 Share Posted September 5, 2009 swap out frames for tables. brilliant. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913118 Share on other sites More sharing options...
redarrow Posted September 5, 2009 Share Posted September 5, 2009 ps. there nothing wrong with good old tables.... unless you want to learn css and not use tables upto the user mate.... This might work better mate....... not tested, but the idea is, when a link is pressed the saying off the array is shown in the content part of the page, <html> <head> <title>This is where the title of the page goes teacher.</title> </head> <table border="4" width="100%"> <tr> <td align='center'> my logo </td> <td align='center'> <h1>This is the header of the page teacher!</h1> </td> <table> <table border="4" width="100%"> <tr> <td align="center"> <?php for($i=1; $i<6; $i++){ echo"<a href='{$_SEVER['PHP_SELF']}?link=$i'>link $i</a> <br />"; } ?> </td> <td valign="top" align="center"> <?php $content_info=array(1=>"Hi there teacher, teach the children correctly please!", "Teacher you no that frames in html are no good behave!", "Teacher i sugest you also read the html manual agin!", "Teacher please show the children html properly", "Html/css is the way foeward teacher!"); foreach($content_info as $key=>$val){ if($_GET['link']==$key){ echo $val[$key]; } } ?> </td> </tr> </table> <table border="4" width="100%"> <tr> <?php for($i=1; $i<6; $i++){ echo"<td align='center'><a href='{$_SEVER['PHP_SELF']}?link=$i'>link $i</a>\n</td>"; } ?> </td></tr></table> </html> Crayon Violent what you saying that a css div is better then a table ok grate.... Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913122 Share on other sites More sharing options...
Daniel0 Posted September 5, 2009 Share Posted September 5, 2009 Crayon Violent what you saying that a css div is better then a table ok grate.... Depends on the context. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913124 Share on other sites More sharing options...
.josh Posted September 5, 2009 Share Posted September 5, 2009 ugh I shouldn't have opened my mouth now this is going to turn into yet another tables vs. divs debate. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913138 Share on other sites More sharing options...
Lamez Posted September 5, 2009 Share Posted September 5, 2009 The Answer Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913152 Share on other sites More sharing options...
xcoderx Posted September 5, 2009 Author Share Posted September 5, 2009 thanks all but i only wanted guidance i didn want anybody doin my homework i do know frames but just didn know how exactly i make that structure, Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913214 Share on other sites More sharing options...
xcoderx Posted September 6, 2009 Author Share Posted September 6, 2009 did it <html> <frameset rows="40%,40%,20%"> <frame src="frame_a.htm" noresize="noresize" scrolling="no"> <frameset cols="25%,75%"> <frame src="frame_b.htm" noresize="noresize" scrolling="no"> <frame src="frame_c.htm" noresize="noresize" scrolling="no"> </frameset> <frame src="frame_d.htm" noresize="noresize" scrolling="no"> </frameset> </frameset> </html> Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-913440 Share on other sites More sharing options...
redarrow Posted September 13, 2009 Share Posted September 13, 2009 Sorry but frames are no good..... The only time i use frames are on a intranet setup. Frames don't work properly for live web sites.(all the time your learning frames your be better learning tables and css)) and earn more money, in the world of web design. Most meaning nearly all,Search engines got terrible problems indexing frames, in there search engine. please take my advice ok. There a lot of study/work to be a web designer, then a programmer, there loads to learn but there's also short cuts if you lesion to those that no. and frames are a no no no to any web designer. What you have just created in the world of web design, is a pile of problematic crap sorry. Sorry for the late reply. as your learning html/css also please learn the infrastructure of seo. also please don't let a teacher tell you that xhtml is better then html another stupid assumption from most teachers. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-917852 Share on other sites More sharing options...
DEVILofDARKNESS Posted September 16, 2009 Share Posted September 16, 2009 I do use frames! but only for one thing: My navigation Bar I don't want to change every page on my server just because I want to add/remove something from my navigation bar?! Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-919596 Share on other sites More sharing options...
Daniel0 Posted September 16, 2009 Share Posted September 16, 2009 How would your navigation bar suddenly change? Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-919597 Share on other sites More sharing options...
Adam Posted September 16, 2009 Share Posted September 16, 2009 Err, PHP includes? Templates? Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-919598 Share on other sites More sharing options...
JonnoTheDev Posted September 16, 2009 Share Posted September 16, 2009 I do use frames! but only for one thing: My navigation Bar Then your pages will get indexed without a navigation or your navigation may get indexed itself. Frames are about 10 years out of date and should be avoided at all costs for live websites. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-919599 Share on other sites More sharing options...
Daniel0 Posted September 16, 2009 Share Posted September 16, 2009 Err, PHP includes? Templates? Uh yeah, but something has to trigger the change after the page has loaded. Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-919600 Share on other sites More sharing options...
saltedm8 Posted September 16, 2009 Share Posted September 16, 2009 I can answer that question as to whether you should be using tables for layout... check this out http://www.shouldiusetablesforlayout.com/ Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-919602 Share on other sites More sharing options...
waynew Posted September 16, 2009 Share Posted September 16, 2009 DIV = Layout Table = Tabular Data Are forms tabular data? Quote Link to comment https://forums.phpfreaks.com/topic/173194-help-please-school-project/#findComment-919606 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.