Jump to content

kenzai

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by kenzai

  1. im still learning PHP on w3school website and i found something im dont quite understand about the dot ( " . . " ) uses..here goes<html><body><?php$txt1="Hello World";$txt2="1234";echo $txt1 . " " . $txt2 ; // this dots start with dots first then the " ( . " " . )?></body></html>and<?php $i=1;while($i<=5) { echo "The number is " . $i . " <br /> "; // this one starts with " then dots ( " . . " ) $i++; // oh and this, i dont know what this ++ means }?>im kinda confuse here.. that doesn't work the same way the other way around?and the <br /> , shud we put that "/" ? is it neccessary, or without it the br will still work?
  2. kenzai

    Login Script

    thank guys =) the reply is really informative and useful to me, especially the php mysql tutorial link ^^i reposted this problem on PHP forums.. sorry for the double post, any moderator here can closed this topic since it doesn't belong to javascript sub forums.. sorry for troubling and posted stuff belong to PHP sub forums..
  3. sorry guys i posted the question on the wrong sub forum, so i reposted my problem here.. [quote name='kenzai' post='53391' date='Jan 2 2007, 02:54 AM']I'm noob in webpage programming cuz I just know how to use WSYIWYG editor (learned html a few years ago, tat time i was making simple webpage using notepad =D)I plan to make a website with membership system which require login.After the login, the member will arrive in a page where I customize the page with my own images of logout, edit profile, link to member page that only accessable by that member..Can javascript do this? Or php (is it same like javascript function or it is just an alternative of html?)Please forgive me for my noob question and any english mistake..[/quote][quote name='The master' post='53392' date='Jan 2 2007, 02:59 AM']No with javascript u can't make a page that is only viewable by that member, for that section u should be with PHP.I dont know that language.But u can make a prompt box that brings the user to another pagewith a sort of passwordlike [html]<script type="text/javascript">function pass(){var pass= prompt ("pls enter the password","***")var mypass = "hello"if (pass==mypass){document.location="http://www.....")}</script>[/quote][quote name='kenzai' post='53394' date='Jan 2 2007, 03:06 AM']oo ok i got it.. but what if I use PHP to make that member login page? The login page is like how we login to yahoo where example, pages like your score point in yahoo games, the profile of your yahoo id, reading the mail box etc.. (sorry if my sentences seem confusing, i wanted a website just like how we login into yahoo/msn where we browse using our own id, browse profile of other member, can send mail to other members etc.)so do I need to learn SQL too in order to make that kind member login page using PHP programming?[/quote]
  4. kenzai

    Login Script

    oo ok i got it.. but what if I use PHP to make that member login page? The login page is like how we login to yahoo where example, pages like your score point in yahoo games, the profile of your yahoo id, reading the mail box etc.. (sorry if my sentences seem confusing, i wanted a website just like how we login into yahoo/msn where we browse using our own id, and we can send mail to other members etc.)so do I need to learn SQL too in order to make that kind member login page using PHP programming?
  5. kenzai

    Login Script

    I'm noob in webpage programming cuz I just know how to use WSYIWYG editor (learned html a few years ago, tat time i was making simple webpage using notepad =D)I plan to make a website with membership system which require login.After the login, the member will arrive in a page where I customize the page with my own images of logout, edit profile, link to member page that only accessable by that member..Can javascript do this? Or php (is it same like javascript function or it is just an alternative of html?)Please forgive me for my noob question and any english mistake..
×
×
  • Create New...