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!

My problema ka ba sa project or thesis? Tingnan ko, baka sakali ma ayus ko.

Status
Not open for further replies.
Sir, bka pwede nyo ako matulungan sa POS ko using Visual Studio 2010.
POS po sya ng clinic, nasimulan na kahit papano. kahit sa mga main functions and display lang po.
Salamat sa pag pansin sa post na 'to :) :)

Tumutulung po ako sa mga may problema sa coding and error debugging. Pero po pag mag papagawa na, hindi na po yun free.
 
Tumutulung po ako sa mga may problema sa coding and error debugging. Pero po pag mag papagawa na, hindi na po yun free.

sorry misunderstood ko po.
mag-tanong po ng codes for particular function, pwede po?
thaanks.
 
Eto po codes ng index.php ko

<?php
include_once "connection.php";

?>


<!DOCTYPE html>
<html>
<head>
<title>Hello</title>

</head>

<style type="text/css">
.Buildings {
margin:20px;
text-align:center;
}
</style>
<body>

<div class="Buildings">
<label>Select Buildings</label>
<select name="Buildings">
<option value="">--Select Building--</option>
<?php
$query= "SELECT * FROM buildings";
$results= mysqli_query($con,$query);
foreach($results as $buildings){
?>
<option value="<?php echo $buildings["buildings"];?></option>
<?php
}
?>

</select>
</div>

</body>
</html>

Eto naman sa connection.php
<?php
$con= mysqli_connect("localhost","root","", "dropdownlist");


if(mysqli_connect_errno())
{
echo"Failed to connect:".mysqli_connect_errno();
}

?>


Bale ang mangyayare po jan is nakadropdownlist sya tapos yung pagpipilian nya ay nakabase sa database ko. Xampp po gamit ko at naka mysqlClick image for larger version. Name: Untitled.png Views: 0 Size: 78.3 KB ID: 1104381View attachment 258183
 

Attachments

  • Untitled.png
    Untitled.png
    78.3 KB · Views: 12
Eto po codes ng index.php ko

<?php
include_once "connection.php";

?>


<!DOCTYPE html>
<html>
<head>
<title>Hello</title>

</head>

<style type="text/css">
.Buildings {
margin:20px;
text-align:center;
}
</style>
<body>

<div class="Buildings">
<label>Select Buildings</label>
<select name="Buildings">
<option value="">--Select Building--</option>
<?php
$query= "SELECT * FROM buildings";
$results= mysqli_query($con,$query);
foreach($results as $buildings){
?>
<option value="<?php echo $buildings["buildings"];?></option>
<?php
}
?>

</select>
</div>

</body>
</html>

Eto naman sa connection.php
<?php
$con= mysqli_connect("localhost","root","", "dropdownlist");


if(mysqli_connect_errno())
{
echo"Failed to connect:".mysqli_connect_errno();
}

?>


Bale ang mangyayare po jan is nakadropdownlist sya tapos yung pagpipilian nya ay nakabase sa database ko. Xampp po gamit ko at naka mysqlClick image for larger version. Name: Untitled.png Views: 0 Size: 78.3 KB ID: 1104381View attachment 1104382


Lagay mo po ang php files mo sa htdocs folder po.

then,

browse mo po,

127.0.0.1/yourprojectfolder/yourphpfilehere.php
 
pa help nmn po enrollment system design lang po ng mga module please salamat po
 
Eh pano nman po kapag yung nkalagay sa dropdown list eh hindi pa nkasave sa database bali may button po ako tas pagkaclick po magadd po sya sa database
 
Eh pano nman po kapag yung nkalagay sa dropdown list eh hindi pa nkasave sa database bali may button po ako tas pagkaclick po magadd po sya sa database

Eh di i save mo po. dapat yung dropdown mo nasa loob ng form.

- - - Updated - - -

pa help nmn po enrollment system design lang po ng mga module please salamat po

I'm not feeding code or design.

If you want me to design it for you, you'll have to pay me for my time.
 
Sir pahelp naman po. suggest naman po kayo ng title capstone project.

Sir pahelp naman po. suggest naman po kayo ng title capstone project. salamat po
 
Re: Sir pahelp naman po. suggest naman po kayo ng title capstone project.

Sir pahelp naman po. suggest naman po kayo ng title capstone project. salamat po

I will not feed title, but I will give you a hint.

About ito sa pag compute ng electric consumption. This one required a lot of formulas and algorithm. well, depende sayo.

Features:

Compute monthly, daily or yearly electric consumption rate.
Detect high rate electric consumption.
Detect percentage of rate accuracy.
Suggest a analysis in accuracy, rate and consumption.

For more info contact me. Send me pm.
 
Guys panu gawing tablename si combo box?
example:

insert into tablename ...

so ang mangyayare instead tablename ang ilalagay eh yung value ni combo box?
help please!
 
Guys panu gawing tablename si combo box?
example:

insert into tablename ...

so ang mangyayare instead tablename ang ilalagay eh yung value ni combo box?
help please!

Combox >>
value : "tbl_user", text: "Table User"
value : "tbl_client", text: "Table Client"

pag pinili mo si "Table User" sa combo box

ang magiging output nyan e

insert into tbl_user

Gets?
 
Sir pano po ba maglagay ng background image sa php ? Yung masasakop nya yung buong screen salamat po
 
Sir pwede humingi ng tulong? about VB 6.0? :pray:
Pm ko nalang po sayo yung Problema :pray:
 
Sir paano po maayos yung mga position ng components like jlabels, jtextfields and jbutton sa java? Tsaka po gusto ko po sanang lagyan ng design yung gui na gawa ko.
Sana po matulungan ninyo ako. Maraming salamat po! :salute:
 
Last edited:
Status
Not open for further replies.
Back
Top Bottom