Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~29.5K People Reached
About Me

Truck Driver with basic php/mysql skills learning along the way.

Interests
AFL Football, History, Genealogy.
PC Specs
HP Laptop
Favorite Forums
Favorite Tags

12 Posted Topics

Member Avatar for Jay_7
Member Avatar for mark.giles.14

Should apostrophe's be stored from a form into a database as ’ or as is ' If Im pasting articles into a database from another website do I need to convert the string on posting or leave them as it is.

Member Avatar for mark.giles.14
0
148
Member Avatar for mark.giles.14

Not sure exactly how to ask the question of what Im trying to do but will try explain it and insert the code. But the basics of the question is Im running a sports website with a database with several tables. PersonProfile Coach_Career League Club all linked via fields PersonProfile.pid …

Member Avatar for mark.giles.14
0
235
Member Avatar for Sanjeev.

Urtrivedi is the master of understanding noobs. He seems to understand everyone of my posts easily as well :)

Member Avatar for urtrivedi
0
149
Member Avatar for dudegio
Member Avatar for Bsc148

Getting the design of the tables and fields structure right from the start will save a lot of heartache later. This website has a lot of good tutorial videos to learn the basics. [Click Here](http://www.developphp.com/list_php_video.php)

Member Avatar for mark.giles.14
0
177
Member Avatar for joachimanderson

try this code and tutorial. [Click Here](http://www.developphp.com/view.php?tid=1349)

Member Avatar for mark.giles.14
0
211
Member Avatar for mark.giles.14

Having trouble with header redirection passing variables from the url. <? ob_start(); ?> <?php require_once ("Includes/config.php"); require_once ("Includes/connectDB.php"); include("Includes/header.php"); confirm_is_admin(); $lid = $_GET['lid']; $yr = $_GET['yr']; $gid = $_GET['gid']; $pid = $_GET['pid']; $pn = $_GET['pn']; if (is_admin()) { $aid = $_GET['aid']; $query = "DELETE FROM articles WHERE article_id = ?"; …

Member Avatar for mark.giles.14
0
205
Member Avatar for davy_yg

I found this tutorial very useful. [Click Here](http://www.developphp.com/view.php?tid=1349)

Member Avatar for rpv_sen
0
118
Member Avatar for mark.giles.14

I need to rebuild my website from scratch as its using old mysql script in pages and based on xmb forum software as a logon system and to connect to my sports database pages. Can someone suggest the best option from here to either update to mysqli or PDO. So …

Member Avatar for pritaeas
0
475
Member Avatar for My question

This is what I use, you can edit the table names and fields to match your database. <?php $result = mysql_query("Select birthstate.state_id AS menubstate_id, birthstate.state_abbrev AS menubstate_name FROM birthstate Having menubstate_id > '0' Order By menubstate_name Asc"); ?> <select name="bstate" id="bstate"> <option value="<?php echo $myrow["bstate"]?>"><?php echo $birthstate;?></option> <?php while($row = …

Member Avatar for fireburner29
0
423
Member Avatar for hanspeare

The End.