Monday, April 15, 2013
Search Music PHP
Search Music PHP
$link = mysqli_connect("localhost", "root", "", "musicbuydb");
if(mysqli_connect_errno()){
die(mysqli_connect_error());
}
$id = trim($_POST["txtmusicsearch"]);
echo $id;
$query = "select * from musictbl WHERE music_id = $id";
$res = mysqli_query($link,$query);
echo "
";
Music Id | Music Name | Music Downloaded Times |
---|
while($record = mysqli_fetch_assoc($res))
{
echo " ";
echo "
". $record['music_id'] ."
";
echo "
". $record['music_title'] ."
";
echo "
". $record['music_no_times'] ."
";
echo "
"; }
echo "
";?>
text Files:
https://www.box.com/s/w7snqebceufl1jn4saon
Search Music:
https://www.box.com/s/f7e1zqftdu09j3phb72f
Thursday, December 20, 2012
Twitch Tv Eve Online
Lately I have been streaming some Eve Online on my Twitch Channel: CapApollo Twitch Channel Come Check me out as I stream Mission Running and Answer any Questions in Chat. Come Hang out and follow me on Twitch as I run Missions and Listen to Music!
Here is a Link for a Free 21 Day Trial of EVE Online:
https://secure.eveonline.com/trial/?invc=7d956c46-392e-497b-ae6e-6f5011b409d9&action=buddy
Come join me and have some fun!
Here is a Link for a Free 21 Day Trial of EVE Online:
https://secure.eveonline.com/trial/?invc=7d956c46-392e-497b-ae6e-6f5011b409d9&action=buddy
Come join me and have some fun!
Thursday, September 20, 2012
Translink Addon
Check out the new Translink blog addon, located on the right hand side.
Use this to check out bus times for the Lower Mainland and Greater Vancouver Regions for bus schedules!
Use this to check out bus times for the Lower Mainland and Greater Vancouver Regions for bus schedules!
Sunday, July 1, 2012
Ventrilo and Minecraft Server!!!!!
Ventrilo Server Information (VoIP Server):
- Server name: Stasis
- IP/Address: 184.154.207.170
- Port: 44128
- Password: canada
Minecraft Server Connect using Hamachi:
- Download Hamachi : Download Hamachi UnManaged
- Run install Hamachi
- Network > Join Network:
- Network Id: davidslegit
- Password: packetstealer
- Hit Ok
- Open Minecraft
- Multiplayer
- add new server
- Server IP: 5.9.102.231
- Hit ok
- Connect
- Success you are now connected to the Minecraft Server.
Rules for Minecraft Server:
- No griefing!
- Don't ask for op!
- Optional: Join Ventrilo
Tuesday, June 12, 2012
Link for criteria sheet
Link to the file needed to attach to the routine letter assignment.
https://www.box.com/s/4a570c0d055bbd5052f0
Monday, April 16, 2012
btnDelete for ClientServers
Private Sub btnDelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDelete.Click
Dim cmdStudent As New SqlCommand
Dim daStudent As New SqlDataAdapter
Dim dsStudent As New DataSet
Dim dtStudent As New DataTable
conn = GetConnect()
conn.Open()
cmdStudent = conn.CreateCommand
cmdStudent.CommandText = "Delete from UniversityStudent where Studentid = '" & Trim(txtSID.Text) & "'"
intcheck = cmdStudent.ExecuteReader.RecordsAffected
If intcheck > 0 Then
MsgBox("Record Deleted")
Else
MsgBox("No Records Deleted")
End If
conn.Close()
RefreshDataGrid()
End Sub
Subscribe to:
Posts (Atom)