Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 2
1
2
>
Showing results 1 to 25 of 33
Search took
0.17
seconds.
Search:
Posts Made By:
Strider64
Forum:
PHP
05-21-2013, 08:23 PM
Replies:
1
Dynamic controller in MVC?
Views:
109
Posted By
Strider64
If you want the ability to associate categories...
If you want the ability to associate categories or tags with pages (or posts), you will need to create a categories (tags) table. Then you would need a create a pages_categories table that will act...
Forum:
PHP
05-18-2013, 03:44 AM
Replies:
0
Is this a secure way of doing things?
Views:
123
Posted By
Strider64
Is this a secure way of doing things?
I using Object-Oriented Programing and I think I'm finally getting the hang of things (I hope). However, I'm far from being a guru, but I just want to make sure I'm going in the right direction...
Forum:
PHP
05-12-2013, 04:58 AM
Replies:
4
Conversion input - mysql - PDO
Views:
149
Posted By
Strider64
Most people lean towards using PDO because it...
Most people lean towards using PDO because it offers better flexibility when it comes having the flexibility of using different database over mysqli (obviously) and the prepared statements can be...
Forum:
PHP
05-11-2013, 10:17 PM
Replies:
3
Issue with variables
Views:
124
Posted By
Strider64
OOPs... I didn't see you were trying to get a...
OOPs... I didn't see you were trying to get a value from a form...sorry me bad. I'll get back to you (that is if someone else doesn't beat me to the punch :D )
Forum:
PHP
05-09-2013, 03:53 PM
Replies:
5
Resolved
Algorithms & for loops
Views:
235
Posted By
Strider64
Here's how to get it to look exactly on screen...
Here's how to get it to look exactly on screen what you want (I know it just aesthetics:D):
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Star Triangle</title>
</head>
<body>...
Forum:
Post a PHP snippet
04-25-2013, 05:03 PM
Replies:
4
Retrieve Data from an Array the OOP Way
Views:
340
Posted By
Strider64
I just want to follow up on this, I can't say...
I just want to follow up on this, I can't say Thank You enough. I made the modifications and while it's a little more code it sure does bring the flexibility, ease of modification and vastly improves...
Forum:
Post a PHP snippet
04-24-2013, 04:46 PM
Replies:
4
Retrieve Data from an Array the OOP Way
Views:
340
Posted By
Strider64
Thanks, that helps out a lot for I was looking at...
Thanks, that helps out a lot for I was looking at finding a way of protecting (or giving it integrity to the data), I would have never in a million years of thought of doing something like that....
Forum:
PHP
04-23-2013, 02:03 PM
Replies:
6
Looping through a results set in OOP?
Views:
213
Posted By
Strider64
This is what I do---> Suppose you have a...
This is what I do--->
Suppose you have a Column in your database called post_date in one table and update in another table? Instead of writing a whole bunch of if statements, simply create a...
Forum:
PHP
04-22-2013, 10:35 PM
Replies:
9
Applying two PHP functions to a piece of data
Views:
215
Posted By
Strider64
You don't need to use stripslashes() when getting...
You don't need to use stripslashes() when getting the string back. Do however use htmlspecialhars() when displaying any text to the user that you don't compose yourself (such as those obtained from...
Forum:
PHP
04-22-2013, 12:45 PM
Replies:
9
SimpleXML & html entities = strange characters
Views:
175
Posted By
Strider64
<?php $orig = "–"; $a =...
<?php
$orig = "–";
$a = htmlentities($orig);
$b = html_entity_decode($a);
echo $a;
echo '<br>';
echo $b;
Forum:
PHP
04-22-2013, 02:57 AM
Replies:
12
What is wrong with this code snippet
Views:
313
Posted By
Strider64
In this case I find using the ternary operator...
In this case I find using the ternary operator easier to use
echo ( $fields['price'] ) ? '<li><span class="bold-text">' . $fields['pricetext'] . ': </span></li>' : '';
Forum:
PHP
04-21-2013, 08:05 PM
Replies:
1
OOP required for college-level social networking site?
Views:
125
Posted By
Strider64
I'm just getting the grasp of OOP myself and my...
I'm just getting the grasp of OOP myself and my answer is if you are comfortable writing PHP the procedure style then start slow with OOP. Don't try to do everything at once with OOP, take it in...
Forum:
Post a PHP snippet
04-21-2013, 12:53 PM
Replies:
4
Retrieve Data from an Array the OOP Way
Views:
340
Posted By
Strider64
Retrieve Data from an Array the OOP Way
This is a fairly simple Constructor class, but I think will save people who are developing a forum or a blog some time.
Suppose you have a Column in your database called post_date in one table and...
Forum:
HTML & CSS
04-21-2013, 04:36 AM
Replies:
5
dream weaver
Views:
178
Posted By
Strider64
I took a college HTML/CSS a few years ago,...
I took a college HTML/CSS a few years ago, Notepad(+) was the only thing we used. However, if you feel comfortable with HTML/CSS then Dreamweaver is a great time saver like already stated for coding...
Forum:
HTML & CSS
04-21-2013, 04:31 AM
Replies:
2
for god s sake.. please help with float
Views:
151
Posted By
Strider64
FYI - For dummy text this is a great website to...
FYI - For dummy text this is a great website to go to: http://www.lipsum.com/
Forum:
Site reviews
04-16-2013, 11:29 AM
Replies:
6
Please review my registration system
Views:
529
Posted By
Strider64
never mind.....
never mind.....
Forum:
PHP
04-07-2013, 02:53 PM
Replies:
3
if statement syntax error
Views:
226
Posted By
Strider64
$login_error = "Account must be activated before...
$login_error = "Account must be activated before logging in.";
Forum:
PHP
04-02-2013, 12:19 PM
Replies:
6
Help update databse after form while loop
Views:
248
Posted By
Strider64
First I would suggest using mysqli or PDO for...
First I would suggest using mysqli or PDO for mysql has been depreciated.
The following is how you would do it in mysqli (The code hasn't been tested....if you need more help you can easily get...
Forum:
PHP
03-17-2013, 05:56 AM
Replies:
9
Calling for help in order to understand a Callback function!
Views:
577
Posted By
Strider64
You're not testing anything, $valid is set to...
You're not testing anything, $valid is set to true because you have it set as true in the function.
Here maybe this will help:
<?php
function validate($people, $conditions, $value) {
...
Forum:
HTML & CSS
03-10-2013, 12:40 PM
Replies:
2
Need Dropdonw menu help
Views:
190
Posted By
Strider64
<div id="nav"> <ul> <li><a...
<div id="nav">
<ul>
<li><a href="#">Link 1</a>
<ul>
<li><a href="#">Sub_Link 1</a></li>
</ul>
<li>
<li><a...
Forum:
PHP
03-10-2013, 12:18 AM
Replies:
12
logout problem
Views:
385
Posted By
Strider64
When I started out I used Notepad+ (I'm on a...
When I started out I used Notepad+ (I'm on a Windows computer), but you could use Dreamweaver. Just don't use of any of their fancy automated do-dads...use it as text editor until you are...
Forum:
HTML & CSS
01-28-2013, 04:52 PM
Replies:
3
Resolved
Problem with wrapper background in CSS
Views:
353
Posted By
Strider64
First I think you are tackling your logo wrong,...
First I think you are tackling your logo wrong, by that I mean your logic. Why don't you do something like the following:
Example of CSS Code
body {
font-size: 76%;
background-color: #f9f9f9;...
Forum:
Site reviews
06-22-2012, 08:48 PM
Replies:
7
please review & critique my site
Views:
1,921
Posted By
Strider64
"The Best Information For Learning To Golf And...
"The Best Information For Learning To Golf And Break 80" is a little hard to read and there is a word Search hanging in the header. I would tighten the header/nav so more of the body is seen. I...
Forum:
DOM and JSON scripting
03-21-2012, 06:05 AM
Replies:
4
Works fine in Firefox and Chrome, but not IE
Views:
1,176
Posted By
Strider64
Sorry I'm a little tired and it didn't actually...
Sorry I'm a little tired and it didn't actually occur to me to look in IE for the error code(s) for I mainly use Firefox.
Thanks again for you help, I just need to be pointed in the right...
Forum:
DOM and JSON scripting
03-21-2012, 05:16 AM
Replies:
4
Works fine in Firefox and Chrome, but not IE
Views:
1,176
Posted By
Strider64
If using innerHTML elements is not recommended to...
If using innerHTML elements is not recommended to create html elements, could you steer me in the direction of a different way in getting the look? I know how to do it css, but I really don't want to...
Showing results 1 to 25 of 33
Page 1 of 2
1
2
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
12:03 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.