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

Mga sir patulong naman po kung paano maging homepage sa website ko ang form.php na inupload ko sa webhosting ko, kasi pag type ko ng domain ko sa address bar ay redirect po siya sa index. ganto po sana gusto kung mangyari: Halimbawa: pag type ko ng url na trendster.ga sa address bar ay dapat direct na siya kaagad sa form.php at dapat hindi na po kailangan pang i click si form.php bago maka pasok sa form.php. . Thanks po sa tutulong.


pasensya na po newbie po ako at wala po akong formal schooling sa gantong pag-aaral. natuto lang po ako sa pamamagitan ng panonood ng video at dito sa tread na ito po.

ito po mga pictures:

View attachment 940652

View attachment 940653


instead of form.php, gawin mo pong index.php.
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

^
^
Or home.php
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Hi, sino na dito nakagawa ng Online Hotel and Resort Reservation with Billing System ?
Edit: Ask ko narin, may nakagawa na ba dito, once nag register sya naka encrypt yung password na sa mysql.
Then si user kapag nakalimutan nya yung password pwede sya mag request through email address.
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Guys patulong naman po

ang balak ko po sana
kpag sinelect nila Dancing == Dancing ang maipupunta sa database at kapag Singing ganun ang mailalagay din
pero kpag Other po ang pinili nila at nag-enter po sila ng data yung na enter na data sa input yun naman po ang mag-sasave.

eto po ng code ko kpag pinili ko other at nag lagay ako ng value sa input
other parin po yung magsasave sa database

paano po gagawin ko po dito kpag pinili ko yung other at naglagay ako ng value yun po sana gusto kong makuhang data at magsasave. Patulong po.

PHP
Code:
Talent:
    <form method=post action=test2.php>
	<select name="talent" onchange="if( this.value=='other' )   { this.form['other'].style.visibility='visible' }else     { this.form['other'].style.visibility='hidden' };" required/>
    <option value="Dancing">Dancing</option>
    <option value="Singing">Singing</option>
    <option value="other">Other</option>
    <input type="text" name="other" style="visibility:hidden;" />
    </select>
	<button type=submit>
</form>


SQL (test2.php)
Code:
$sql="INSERT INTO database (Talent) VALUES('$_POST[Talent]',)";
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Good day masters, paano po ba yung ganitong design? css po ba ito help naman po... yung pong pag nag click sa parang button e mag dro-dropdown po? :thanks: :salute:

attachment.php
 

Attachments

  • questions.jpg
    questions.jpg
    91.4 KB · Views: 70
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Good day masters, paano po ba yung ganitong design? css po ba ito help naman po... yung pong pag nag click sa parang button e mag dro-dropdown po? :thanks: :salute:

http://www.symbianize.com/attachment.php?attachmentid=943762&stc=1&d=1405748678

gumamit cla ng jquery dyan...

<a href="#" id="collapse">Button</a>

<div id="content" style="display:none">
ung Content na nakatago
</div>

Jquery
$(document).ready(function() {
$('#collapse').click(function() {
$('#content').removeAttr("style");
});
});
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

gumamit cla ng jquery dyan...

<a href="#" id="collapse">Button</a>

<div id="content" style="display:none">
ung Content na nakatago
</div>

Jquery
$(document).ready(function() {
$('#collapse').click(function() {
$('#content').removeAttr("style");
});
});
thanks po sir :) .... sir question po ulit.. merun po bang ganyan sa css?
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

thanks po sir :) .... sir question po ulit.. merun po bang ganyan sa css?

ang alam ko wala.... pwede mong gamitin ang css for the transition and effects... pero ung hide and show javascript or jquery ang gagamitin mo..

- - - Updated - - -

Guys patulong naman po

ang balak ko po sana
kpag sinelect nila Dancing == Dancing ang maipupunta sa database at kapag Singing ganun ang mailalagay din
pero kpag Other po ang pinili nila at nag-enter po sila ng data yung na enter na data sa input yun naman po ang mag-sasave.

eto po ng code ko kpag pinili ko other at nag lagay ako ng value sa input
other parin po yung magsasave sa database

paano po gagawin ko po dito kpag pinili ko yung other at naglagay ako ng value yun po sana gusto kong makuhang data at magsasave. Patulong po.

PHP
Code:
Talent:
    <form method=post action=test2.php>
	<select name="talent" onchange="if( this.value=='other' )   { this.form['other'].style.visibility='visible' }else     { this.form['other'].style.visibility='hidden' };" required/>
    <option value="Dancing">Dancing</option>
    <option value="Singing">Singing</option>
    <option value="other">Other</option>
    <input type="text" name="other" style="visibility:hidden;" />
    </select>
	<button type=submit>
</form>


SQL (test2.php)
Code:
$sql="INSERT INTO database (Talent) VALUES('$_POST[Talent]',)";

Pre try mong palitang ung name="" sa <input type="text" name="other" style="visibility:hidden;" /> mo
kasi dalawa na ung other mo kaya ung 1st na other ung kinukuha....
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Mga master pa help po dito any suggestion or idea po? thanks
View attachment 177882
 

Attachments

  • 10401507_893344267347789_1940529390421517411_n.jpg
    10401507_893344267347789_1940529390421517411_n.jpg
    36.7 KB · Views: 7
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Hi po.. ahm mga sir question po ulit .. hehe kasi po yung program ko sa php NAN po yung lumalabas eh... dpat po binary number.. halimba 5 dapat po 101 .. ang lumalabas NAN pero gumagna naman po itong code na to sa c my mali po ba kong syntax pag dating sa php ?

<?php

$dec = @$_POST['num'];

$rem;
$sum = 0;
$i = 1;


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




do{
$rem = $dec%2;
$sum = $sum + ($i*$rem);
$dec = $dec/2;
$i = $i * 10;
}while($dec>0);



echo "$sum";
}


?>








<form name = "dectobin.php" method = "POST">
<input type = "text" name = "num"><br/>
<input type = "submit" name = "submit">
</form>
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Mga boss pa help naman sa CSS/HTML.. paano ba mag sstick sa bottom ng page ang footer?

Ito po codes ko..

#Page {
min-height:100%;
}

#Header {
width: 100%;
height: 160px;
bottom: auto;
background-color: azure;
}

#Container{
position:relative;
margin-top:5px;
margin-bottom:5px;
width:100%;

}

#Navigation{
width:100%;
height:50px;
background-color:cornflowerblue;
}

#SidePanel{
float:left;
top: 15%;
right: auto;
width: 15%;
height: 100%;
background-color: aqua;
}

#Content{
float:inherit;
top: 15%;
bottom: 100px;
left: 10em;
width:auto;
height: 100%;
margin-left: 15%;
background-color: antiquewhite;
}

#Footer {
background-color:azure;
position: absolute;
bottom:0px;
width: 100%;
height: 80px;
margin-top: -80px; /* negative value of footer height */
clear:both;
}

body {
margin:0;
padding:0;
height:100%;
}

Tapos ito naman po structure ng HTML ko..

<html>
<head>
<title></title>
<style type="text/css"></style>
</head>
<body>

<div id="Page">
<div id="Header"></div>
<div id="Container">
<div id="Navigation">

</div>
<div id="SidePanel">

</div>
<div id="Content">

</div>
<div id="Footer">Footer</div>
</div>
</div>
</body>
</html>

Thanks po. :yipee:
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

ito skin oh with video proof and s/s locally made website using notepad++ at pwede maaccess in local network. (intranet)

https://www.mediafire.com/?xy204j7kicx38d4

Untitled.jpg


comment and suggestion nmn... for intranet po ito via wifi access po ito using cellphones and tablet
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

gumagawa po kasi ako ngayon ng class scheduling system. ung system po na un dapat icheck niya ung availability ng room, class at instructor. ngayon po di ko alam kung pano ung code para dun. pwede po bang tulungan niyo ako para po matapos ko ung system na un? i only have 1 week and 3days left to finish it. please po. patulong...:pray::help:
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

gud day sa inyo,

sino meron dito dental management system in php mysql? baka pwede makahingi. gusto ko lang malaman ang flow ng system.. i wont copy or sell your program.. tnx
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Mga sir patulong naman po kung paano maging homepage sa website ko ang form.php na inupload ko sa webhosting ko, kasi pag type ko ng domain ko sa address bar ay redirect po siya sa index. ganto po sana gusto kung mangyari: Halimbawa: pag type ko ng url na trendster.ga sa address bar ay dapat direct na siya kaagad sa form.php at dapat hindi na po kailangan pang i click si form.php bago maka pasok sa form.php. . Thanks po sa tutulong.


pasensya na po newbie po ako at wala po akong formal schooling sa gantong pag-aaral. natuto lang po ako sa pamamagitan ng panonood ng video at dito sa tread na ito po.

ito po mga pictures:

View attachment 940652

View attachment 940653

Gawa ka ng index.php tpos dun sa loob nun lagyan mo ng code para maredirect yung site sa form.php mo i think heading yun eh. Di ko matandaan pero search m nlng yung code sa google.
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Hi kung meron po kayo mga katanungan tungkol sa PHP, CSS, jquery, HTML at MySQL post nyo d2, sharing of ideas will be highly appreciated. :salute:

CODE EDITOR DOWNLOAD LINK

1. Notepad ++ http://notepad-plus-plus.org/download
2. Dreamweaver http://www.brothersoft.com/downloads/dreamweaver.html


WINLAMP DOWNLOAD (for backend)
http://winlamp.sourceforge.net/?module=download


XAMPP DOWNLOAD (for backend)
guys ito nga pala ang new version ang xammp 1.7.4

recommended:
get it here => http://www.apachefriends.org/en/xampp-windows.html

Apache 2.2.17
MySQL 5.5.8
PHP 5.3.5
phpMyAdmin 3.3.9
FileZilla FTP Server 0.9.37
Tomcat 7.0.3 (with mod_proxy_ajp as connector)




SOON TO UPDATE (Tutorials and Sample Code) Para hindi na po redundant yung mga mostly na tinatanong po natin. :clap:


REGISTRATION FORM
----------------------------
LOGIN FORM
----------------------------
COMMENT FORM
----------------------------
SEARCH FORM
----------------------------
OTHERS (will be specify soon after you post yours)
----------------------------


From there ilalagay po natin lahat ng may author in every code and tuts together with their links in the thread.. :salute:
PM nyo lang ako pag may nilagay kayong tuts and sample codes tas yung link and dont forget the title kung para san yung tuts and sample code the yun para malagay narin natin... thnx guys for helping others..


TS, p-help nmn po..

PROJECT Namin is, PCCI Admission Exam System po..sa PHP daw po namin gagawin, with 3 types ng test:

1. Spelling:
may Play button then sa tabi, textbox.. each question po

2. Technical test:
simple multiple choice type na test

3. Typing Test (timed)



tapos po Offline na nak-LAN lng po may 1 Server at 10 na Clients..
all results will go to the Server/Admin

Company: Philippine Call Center Institute-Bacolod
email: [email protected]


..any idea po? hehe..documentation pa lang po kmi..
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

pa BM TS. thanks...
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

good morning sir.. May tanung po ako sa php. anong code ba ang gagamitin kung kukunin mo ung image file na e save mo sa database sa pamamagitan ng isang unique key.. ung uniique key po e hiwalay sa image file.. sa ibang table po young unique na ginamit ko at sa ibang table nmn yong image file.. ung file name nand image file e ako na mismo nag assign non.. i lilink ko po ung dalawang table.. kung e sesearch ko ung unique key dapat ung lalabas ay yong image file na naka assign sa kanya.. salamat po...
 
Back
Top Bottom