Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok dito

Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

mag tatanung lang poh sana aku sir. panu poh mag bigay nang limit para sa register.. ung pag na register na ung username or password na un ay dina pwding eregister ulit.. tnx poh

Check mo lang before saving to database

Code:
if(isset($_POST['submit'])){

   $username = $_POST['username'];

   $sql = mysql_query("SELECT * FROM usertable WHERE username='$username' LIMIT 1");

   $count_sql = mysql_num_rows($sql);

   if ($count_sql==0){  

          //pag hindi pa nakaregister ung username save it to database
          $insert_user = mysql_query("INSERT INTO usertable(username, password, name)VALUES('$username','$password','$name')");

          if(!$insert_user){

             echo "Unable to save the data " .mysql_error();

          }else{

              echo "User has been added"; 

          }

   }else{

       echo "Username is already is used";

   }  

}

pwede mo rin lagyan mo xa ng button like "Check username availability" after ng textbox ng username.. tas dun mo ilagay ang code for checking username
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

boss my link po b kau kng san mka DL ng PHP at MYSQL? gus2 q ksi m try yan.



Sir nandun po sa first page ung download link natin since new ka pa sa PHP gamit ka nlng po ng xammp, latest version po lahat yun ng tools na kailangan mo po, din sa editor notepad++ na po gamitin mo para masanay ka po ng hard coding. Then you can have some basic toturials from w3school.. ^_^
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

@hakuha_matata_hm
hello sana masagot mo tong tanong ko. Noob ubuntu user here (corporate cause)
Nag install kasi ako sa laptop ko ng XAMPP instead of LAMP. Pero yung htdocs folder ko ay hindi accessible pag nag-set ako ng ownership kasi by default ang gamit ni apache ay "nobody" user. Kaya ang ginagawa ko parati ay nag e-xecute ako sa terminal like ' sudo chmod 777 -R somefile ' everytime na gumagawa ako ng project file. Ang tanong ko sana ay kung baka meron pang mas magandang paraan para sa repetitive na process na to? TIA! ;)

EDIT:

Found the solution na. No need to answer :)

Hehehe, buti naman, pero yong command mo is ok na. Yong problem lang ata siguro nito is instead of somefile use the head directory...

sudo chmod -R 777 htdocs

All files and folders under that folder will be readable by any users.
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

html po gagamitin namin.. may kasamang video at images dapat kasama daw yun chess.. help naman
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

@idol23mikan

anu po ba un pnapagawa sa inyo talaga? Site ba for what?
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

@idol23mikan

anu po ba un pnapagawa sa inyo talaga? Site ba for what?


presentation po kasi about sa mt. pinatubo.. kahit anung software naman po eh.. tapos basta yun gagamitin daw namin may game pag mag present na..
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

presentation po kasi about sa mt. pinatubo.. kahit anung software naman po eh.. tapos basta yun gagamitin daw namin may game pag mag present na..

groupmate here..
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

ISana makatulong..

Para sa easy at all in 1 installation at Configuration ng PHP/mySQL/Apache, mas madali gamitin ang software po na to, EASYPHP @ www.easyphp.org at para sa Tutorial naman po punta kayo sa website na to, madami kayong matututunan sa pag buo ng sarili ninyong website PHPAcademy @ www.phpacademy.org

Pde ka din gumamit ng XAMMP @ www.apachefriends.org
:thumbsup:

maraming slmat po s link...:thumbsup: :salute:
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

paano po magquery sa mysql ng related keywords?

parang ung search po natin dito sa symbianize..

prang hindi exact ang result..
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

^
dipende sa query mo. Naka wildcards ka ba? >:D
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

^
dipende sa query mo. Naka wildcards ka ba? >:D

opo nakawildcard ako..
ganito po sana gusto ko..
example po my keyword ako.. tapos nakita ko na ung hinahanap ko.
gusto ko po sana yung meron pang isusuggest sayo..

example po sa mga blogs meron po silang mga related topics po ba na binibigay.. parang ganun.. i hope nagets nyo po ako.. :noidea:
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

sir pwede gawan niyu poh ito ng code using html at css lang poh please need ko poh sa sunday sana poh matulungan niyu ako ^^
:thanks: poh :) ..

--> gawan niyu poh sana ng code itong ginawa kong design (drinawing ko lang poh yan sa paint) salamat <--

please .. please .. please .. :thanks: poh ulit ..
 

Attachments

  • home.JPG
    home.JPG
    69.6 KB · Views: 4
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

at saka poh paano poh ba gamitin yung notepad ++ ??
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

paano po magquery sa mysql ng related keywords?

parang ung search po natin dito sa symbianize..

prang hindi exact ang result..



gamitan mo lang ng LIKE

$sql = mysql_query("SELECT FROM table WHERE fieldname LIKE '"% keyword %"' ");
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

at saka poh paano poh ba gamitin yung notepad ++ ??


notepad++ dapat may alam kana sa basic ng HTML pag gagamit ka nito. Hard Coding ka lagi dito from open tag of <html> til close tag </html>
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

sir pwede gawan niyu poh ito ng code using html at css lang poh please need ko poh sa sunday sana poh matulungan niyu ako ^^
:thanks: poh :) ..

--> gawan niyu poh sana ng code itong ginawa kong design (drinawing ko lang poh yan sa paint) salamat <--

please .. please .. please .. :thanks: poh ulit ..


Sir ito mga templates para mas padali ang pag-gawa mo, edit mo nlng that fit to your design..

http://www.quackit.com/html/templates/

http://www.2createawebsite.com/build/templates.html
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

gamitan mo lang ng LIKE

$sql = mysql_query("SELECT FROM table WHERE fieldname LIKE '"% keyword %"' ");

sige po salamat sir..
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

sir another question po:

halimbawa po sa database may field ako na gender.

tapos sa edit profile syempre kukunin po lahat ng laman ng user na un ung data nya sa database para sa editing..

kung ang gender ay male paano ko maseselect sa radio button na male sya?
or kung female sya paano ko maseselect na female sya?
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

sir, my tutorial b d2 pra s mga newbie?.....techie lng kc aq n gus2 mgexplore ng knowledge....
 
Back
Top Bottom