- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
12 Posted Topics
Re: Download and use Webmatrix it has a few template starter sites. | |
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. | |
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 … | |
Re: Urtrivedi is the master of understanding noobs. He seems to understand everyone of my posts easily as well :) | |
Re: Thanks, JeniF. This tip is still helping people. | |
Re: 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) | |
Re: try this code and tutorial. [Click Here](http://www.developphp.com/view.php?tid=1349) | |
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 = ?"; … | |
Re: I found this tutorial very useful. [Click Here](http://www.developphp.com/view.php?tid=1349) | |
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 … | |
Re: 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 = … | |
Re: <a href='page.php' onClick="return confirm('Are you sure?')"> |
The End.