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 pa

ayaw magstart ng Apache ko..
Pahelp po.. :help:

ito po ung lumalabas



8:14:20 PM [Apache] Error: Apache shutdown unexpectedly.
8:14:20 PM [Apache] This may be due to a blocked port, missing dependencies,
8:14:20 PM [Apache] improper privileges, a crash, or a shutdown by another method.
8:14:20 PM [Apache] Press the Logs button to view error logs and check
8:14:20 PM [Apache] the Windows Event Viewer for more clues
8:14:20 PM [Apache] If you need more help, copy and post this
8:14:20 PM [Apache] entire log window on the forums
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

hi guys... pano magbackup ng database sa website nyo. i mean hindi thru phpmyadmin..
bale may administrator page yung website ko na meron dun na option na pede magbackup and restore db..

thanks
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

ayaw magstart ng Apache ko..
Pahelp po.. :help:

ito po ung lumalabas



8:14:20 PM [Apache] Error: Apache shutdown unexpectedly.
8:14:20 PM [Apache] This may be due to a blocked port, missing dependencies,
8:14:20 PM [Apache] improper privileges, a crash, or a shutdown by another method.
8:14:20 PM [Apache] Press the Logs button to view error logs and check
8:14:20 PM [Apache] the Windows Event Viewer for more clues
8:14:20 PM [Apache] If you need more help, copy and post this
8:14:20 PM [Apache] entire log window on the forums
FIX APACHE


hi guys... pano magbackup ng database sa website nyo. i mean hindi thru phpmyadmin..
bale may administrator page yung website ko na meron dun na option na pede magbackup and restore db..

thanks
may this link help you. BackUp Database Using PHP
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

View attachment 151729
sir paano po ito.. gusto q kasi pg na iclick un button n create question set
eto po un gusto q mangyari..
madadagdag lng po sa page un question
to po pix
View attachment 151730
Ano po b pwede code dito.. salamat po..

pm nyo n lng po aq
 

Attachments

  • 1.png
    1.png
    67.8 KB · Views: 11
  • 2.png
    2.png
    53.4 KB · Views: 8
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

Tama ka na school is not enough for application purpose. Pero wag natin i-underestimate ang school for theoretical purposes. First Year ka pa lang naman at marami ka pang matututunan. As for the next step... Kung need mo talaga ma-apply ang natutunan mo, create projects on your own. Search on some good websites and try to replicate their functionalities and design. Sa tingin ko wala pang mageemploy sayo kahit internship. Mind you na malakas ang competition regarding web development. Pero di naman mauubos ang opportunities.

Find out kung saan ka magaling - FrontEnd (CSS JQuery HTML) or BackEnd (PHP MYSQL). If both, the better. Kung saan ka magaling doon ang market mo.
Hope this opinion of mine helps.

Hey! This is somehow fairly informative. Thanks a lot! Actually I've had experience with web dev before and 2nd courser na ako (though my first course is just a 2 year course). Now lang ako nagfocus on web development. Thanks for the input. :)
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

Mga sir, sino po meron dito na mysql? Pwede naman sya sa visual studio 2010 diba? Penge naman po links dito for download ng mysql, wala kasi akong makita eh. Maraming salamat mga paps. :D
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

mga sir paano po b mgclone ng textbox salamat po..=)
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

View attachment 152035
mga boss pag miniminimize po un screen ganito nangyayari....
:pray::help::help:e dapat po kahit iminimize po ganito po dapat mngyari..View attachment 152038

ano po b dapat q gawin help nmn po please
 

Attachments

  • 6.png
    6.png
    170.2 KB · Views: 6
  • 7.png
    7.png
    128.6 KB · Views: 5
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

PHP question:

gud pm masters meron po kayo tutorial for manual activation by an administrator in php for newly registered members for a website? or may flow kau step by step if ano ang gagawin, need ko kasi lagyan ng activation using admin account
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

Hey! This is somehow fairly informative. Thanks a lot! Actually I've had experience with web dev before and 2nd courser na ako (though my first course is just a 2 year course). Now lang ako nagfocus on web development. Thanks for the input. :)

Thanks din bro!

Mga sir, sino po meron dito na mysql? Pwede naman sya sa visual studio 2010 diba? Penge naman po links dito for download ng mysql, wala kasi akong makita eh. Maraming salamat mga paps. :D

Ang pagkaka-alam ko jejart09, integrated na ang MySQL sa Visual Studio 2010. I remember gumawa ako ng Library System sa Visual Studio 2010, Datasets gamit ko which is my kasamang MySQL commands other than the GUI.
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

Madali po ba HTML? Gusto ko pagaralan to e :)
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

pahelp naman po sa login here is my code

<?php
require("connection.php");

session_start();
session_destroy();

if(isset($_POST['password'])){
$user = mysql_real_escape_string($_POST['username']);
$password = mysql_real_escape_string($_POST['password']);

$SQL='SELECT * FROM user_account WHERE Username = "'.$user.'" AND Password="'.$password.'"';
$result=mysql_query($SQL,$connection);


if (mysql_num_rows($result)!=0){
if($user=="user"){
//echo '<script> alert("hello'.$user.'."); </script>';
session_start();
$_SESSION['login'] = 1;
header("location:vote.php");
}
elseif ($user=="admin") {
//echo '<script> alert("hello'.$user.'."); </script>';
session_start();
$_SESSION['login'] = 1;
header("location:others.php");
}
}
else {
echo '<script> alert("Wrong user name or password"); </script>';
}
}
?>

dapat po dun sa user hindi mismong "user" na text ang mababasa ung ,, mabasa po dapat ung laman sa sql which is name ng field is Username help po
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

pahelp naman po sa login here is my code

<?php
require("connection.php");

session_start();
session_destroy();

if(isset($_POST['password'])){
$user = mysql_real_escape_string($_POST['username']);
$password = mysql_real_escape_string($_POST['password']);

$SQL='SELECT * FROM user_account WHERE Username = "'.$user.'" AND Password="'.$password.'"';
$result=mysql_query($SQL,$connection);


if (mysql_num_rows($result)!=0){
if($user=="user"){
//echo '<script> alert("hello'.$user.'."); </script>';
session_start();
$_SESSION['login'] = 1;
header("location:vote.php");
}
elseif ($user=="admin") {
//echo '<script> alert("hello'.$user.'."); </script>';
session_start();
$_SESSION['login'] = 1;
header("location:others.php");
}
}
else {
echo '<script> alert("Wrong user name or password"); </script>';
}
}
?>

dapat po dun sa user hindi mismong "user" na text ang mababasa ung ,, mabasa po dapat ung laman sa sql which is name ng field is Username help po


e2 gamitin mo..
alert('<?php echo "Hello " .$user; ?>');
sana makatulong..
beginner din ako gaya mo...
:) keep on sharing...

- - - Updated - - -

View attachment 152108

pwd po magtanong?? ano po tawag dito at pano po gumawa nito in php???
 

Attachments

  • ano.PNG
    ano.PNG
    5.4 KB · Views: 4
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

pahelp naman po sa login here is my code

<?php
require("connection.php");

session_start();
session_destroy();

if(isset($_POST['password'])){
$user = mysql_real_escape_string($_POST['username']);
$password = mysql_real_escape_string($_POST['password']);

$SQL='SELECT * FROM user_account WHERE Username = "'.$user.'" AND Password="'.$password.'"';
$result=mysql_query($SQL,$connection);


if (mysql_num_rows($result)!=0){
if($user=="user"){
//echo '<script> alert("hello'.$user.'."); </script>';
session_start();
$_SESSION['login'] = 1;
header("location:vote.php");
}
elseif ($user=="admin") {
//echo '<script> alert("hello'.$user.'."); </script>';
session_start();
$_SESSION['login'] = 1;
header("location:others.php");
}
}
else {
echo '<script> alert("Wrong user name or password"); </script>';
}
}
?>

dapat po dun sa user hindi mismong "user" na text ang mababasa ung ,, mabasa po dapat ung laman sa sql which is name ng field is Username help po


sir konting change lang ito try mo


$SQL='SELECT * FROM user_account WHERE Username = "'.$user.'" AND Password="'.$password.'"';
$result=mysql_query($SQL,$connection);
while($row=mysql_fetch_array($result)) {

if($user == "user") {
//echo '<script> alert("hello'.$row['user'].'."); </script>';
session_start();
$_SESSION['login'] = 1;
header("location:vote.php");
}
}
pero dapat na ka enclosed lahat sa loob ng while and im assuming that your column name for USER is user din..
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

Guys help naman, gumagawa kasi ako ngayon ng Grading System gamit Php. Sa Final Grades may remarks kasi ako hindi ko alam kung "if statement" dapat ko gamitin.

Ganito kasi:
Kapag 1.00-3.00 dapat "Passed" lalabas,
Kapag 4.00 dapat "NFE",
Kapag 5.00 dapat "Failed",
Lastly kapag INC dapat "To Comply" lalabas.

Salamat sa tutulong
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

sir pede po mag paturo sa search sa php? sa sql query po ba un? pnge naman po sample ng search.. :) salamat po.. search ng book ko po gagamitin..

saka po sir paturo ndin po sa bg ng page.. image po gamit ko.. hindi po xa nag fit.. :( panu po kaya gagawin dun..View attachment 152817 yan po xa.. di ko alam kung anung size na gagamitin ko jan.. photoshop po gamit ko..
size nia po now is 1600x1200 save as for web po ginawa ko..
 

Attachments

  • hhhasdhjerdbnr.jpg
    hhhasdhjerdbnr.jpg
    208.2 KB · Views: 9
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

saka po sir paturo ndin po sa bg ng page.. image po gamit ko.. hindi po xa nag fit.. :( panu po kaya gagawin dun..View attachment 874278 yan po xa.. di ko alam kung anung size na gagamitin ko jan.. photoshop po gamit ko..
size nia po now is 1600x1200 save as for web po ginawa ko..

Bigat niyan sir kahit pa sabihin save for web if ganyan kalaking image ang ilalagay mo for background. Since may pattern yung background mo, kumuha ka na lang ng portion nung background let's say 300x300 then ilagay mo as background sa body. Sa logo naman, ctrl + click mo yung thumbnail niya sa photoshop and ctrl + shift + c mo then ctrl + n mo para makagawa ng new document na same size dun sa logo after niyan, ctrl + v mo lang sa document para mapaste yung logo tsaka mo ngayon isave for web para mas magaan. As for the copyright image mo, style mo na lang siya using CSS sa footer section. Mas ayos ang flow ng website mo, sir kung pagpapartepartehin mo kesa sa buong image and ofcourse para mag fit din siya.

Check mo sir yung example code na ginawa ko, read mo na lang yung mga comments sa stylesheet. CodePen
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

Kaya po ba gawin sa PHP yung Two Way SMS. Yung may Recieve at Send Message? At may alam po ba kayong site or guide?
 
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pa

Kaya po ba gawin sa PHP yung Two Way SMS. Yung may Recieve at Send Message? At may alam po ba kayong site or guide?

Possible po yung send and receive message although may bayad kasi kailangan ng SMS gateway. Check mo to, sir. 2-waysms and Implementing Two-way SMS with PHP. Alam ko dito sa Textph.com nag-ooffer sila ng mga tutorials about diyan.
 
Last edited:
Back
Top Bottom