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
Showing results 1 to 23 of 23
Search took
0.06
seconds.
Search:
Posts Made By:
CourtezBoi
Forum:
PHP
09-26-2012, 12:27 PM
Replies:
1
cURL & MySQL based file storage.
Views:
454
Posted By
CourtezBoi
cURL & MySQL based file storage.
So first allow me to explain my issue a little. I have two servers, one that I plan to use for holding files uploaded by my users, and one that will hold the website itself.
I've created a basic...
Forum:
MySQL
06-15-2012, 03:21 AM
Replies:
2
Allowing remote connection from anywhere
Views:
448
Posted By
CourtezBoi
Allowing remote connection from anywhere
I have created a desktop application in java to connect to my MySQL server and insert queries into a database on my VPS, however it will not let me remotely connect to the VPS MySQL to send the data....
Forum:
Java and JSP
06-12-2012, 07:30 PM
Replies:
1
Whirlpool Encryption
Views:
718
Posted By
CourtezBoi
Whirlpool Encryption
So I have created a website in PHP which includes a blog. The website has an account system, and I am now trying to create a desktop application in java which will allow me to login and post into the...
Forum:
PHP
03-25-2012, 04:42 PM
Replies:
3
Wordpress custom template?!
Views:
368
Posted By
CourtezBoi
It would be helpful to see some of the code...
It would be helpful to see some of the code you're working with here, specifically the code for the navigation.
Forum:
PHP
03-23-2012, 07:31 PM
Replies:
8
Resolved
Sessions Not Working On Logout
Views:
526
Posted By
CourtezBoi
Instead of $_SESSION = array(); you could try...
Instead of $_SESSION = array(); you could try session_unset().
PS: I noticed that you are storing your passwords in plain text. This is very insecure, and could upset your guests, I would...
Forum:
PHP
03-23-2012, 07:18 PM
Replies:
7
how to run a loop in an ARRAY
Views:
579
Posted By
CourtezBoi
$un = array(); while ( $row_Recordset1 =...
$un = array();
while ( $row_Recordset1 = mysql_fetch_assoc($Recordset1) )
{
$un[] = $row_Recordset1['barcode'];
}
^ Here is an example that will fix what Dormilich is talking about.
Forum:
PHP
03-23-2012, 07:14 PM
Replies:
6
how to save data to MYSQL using a link instead of a form?
Views:
592
Posted By
CourtezBoi
In PHP there is two ways of transferring data...
In PHP there is two ways of transferring data between pages. GET and POST. In the form that you created that works, you specified sending the data via method POST. Then in processor 2.php you used...
Forum:
PHP
03-23-2012, 07:07 PM
Replies:
3
Creating a simple login page
Views:
534
Posted By
CourtezBoi
You could take a look at an example: ...
You could take a look at an example:
https://github.com/ivannovak/jpmaster77-s-Login-System-/
I do suggest getting to know basic PHP before trying to actually "create a login" because it is a...
Forum:
PHP
03-19-2012, 01:20 AM
Replies:
4
PHP Object-Oriented Opinion!
Views:
446
Posted By
CourtezBoi
Here are some links to tutorials that may help...
Here are some links to tutorials that may help you.
PHP information on classes and object oriented programming:
http://php.net/manual/en/language.oop5.php
CodeIgniter user guide - quite...
Forum:
PHP
03-19-2012, 01:16 AM
Replies:
9
Difference between class and a function
Views:
638
Posted By
CourtezBoi
Functions are used in pretty well every program...
Functions are used in pretty well every program you will write in PHP. When you use something like header() or mysql_query(), those are both functions. There are hundreds of functions built into PHP,...
Forum:
PHP
03-19-2012, 12:27 AM
Replies:
5
PHP multiplication calculator?
Views:
858
Posted By
CourtezBoi
<?php function displayTable ( $num ) { for...
<?php
function displayTable ( $num )
{
for ( $i = 0; $i <= 15; $i++ )
{
echo $num . " X " . $i . " = " . $num * $i . "<br/>";
}
}
?>
Forum:
HTML & CSS
03-18-2012, 11:48 PM
Replies:
2
Need help with new website
Views:
420
Posted By
CourtezBoi
Firstly, I don't believe this is actually a post...
Firstly, I don't believe this is actually a post meant for this section of the forums, it would probably be better suited in one of the Server sided discussions or Web Projects sections.
Though to...
Forum:
PHP
12-22-2011, 01:50 AM
Replies:
22
Resolved
COUNT(*) then deny
Views:
644
Posted By
CourtezBoi
Yes, changing it to >= should work. <? ...
Yes, changing it to >= should work.
<?
if(strip_tags($_POST['submituser']) && strip_tags($_POST['accept']))
{
$total_members = mysql_query( "SELECT COUNT(*) FROM `users` WHERE `crew` =...
Forum:
PHP
12-22-2011, 01:40 AM
Replies:
5
PHP coding..
Views:
393
Posted By
CourtezBoi
I use xampp for my local development area and do...
I use xampp for my local development area and do not encounter the problem you are talking about, so that's a tad odd.
To answer your question about checking a variable to ensure it has only...
Forum:
HTML & CSS
12-21-2011, 03:29 AM
Replies:
5
Lightbox not working in IE
Views:
849
Posted By
CourtezBoi
You should try running a debugger on your page,...
You should try running a debugger on your page, when I did so, 27 errors occured. Might be the source of your problems.
Forum:
General web building
12-21-2011, 03:17 AM
Replies:
1
Looking for the right chat code...
Views:
858
Posted By
CourtezBoi
The solution to your problems likely lies in the...
The solution to your problems likely lies in the Javascript and PHP sections of this website, though you may take a look at a tutorial like...
Forum:
HTML & CSS
12-21-2011, 03:15 AM
Replies:
5
Lightbox not working in IE
Views:
849
Posted By
CourtezBoi
Are you using Lightbox v2.05 or another version?
Are you using Lightbox v2.05 or another version?
Forum:
HTML & CSS
12-21-2011, 03:11 AM
Replies:
5
Lightbox not working in IE
Views:
849
Posted By
CourtezBoi
What version of IE are you referring to, because...
What version of IE are you referring to, because in IE9 it is working perfectly fine for me.
Forum:
PHP
12-21-2011, 03:04 AM
Replies:
7
Proper Form Insert
Views:
424
Posted By
CourtezBoi
<?php function sanitize($input){ ...
<?php
function sanitize($input){
$output = trim(htmlentities($input));
$output = mysql_real_escape_string($output);
return $output;
}
?>
That is how you could implement it...
Forum:
HTML & CSS
12-21-2011, 02:43 AM
Replies:
2
How to make a spreadsheet like form
Views:
1,371
Posted By
CourtezBoi
What you need is another file called process.php...
What you need is another file called process.php where PHP will save the data that you have entered. The issue you are having is not an HTML one, but PHP. You might take a look at...
Forum:
PHP
12-20-2011, 05:24 PM
Replies:
6
What IDE should I use(php)
Views:
392
Posted By
CourtezBoi
Notepad++ for the win. Can't beat simplicity.
Notepad++ for the win. Can't beat simplicity.
Forum:
HTML & CSS
12-20-2011, 03:46 AM
Replies:
2
Please help me [HTML]?
Views:
314
Posted By
CourtezBoi
To expand on what Stephan said, what I assume you...
To expand on what Stephan said, what I assume you mean by "link generator" is a form.
You can use the following code to go to a page (in the case of the example, we'll use submit.php) where you'll...
Forum:
HTML & CSS
12-20-2011, 02:41 AM
Replies:
0
Resolved
auto padding & float
Views:
530
Posted By
CourtezBoi
auto padding & float
So, for my navigation on my site, I have the ul list floated left, otherwise they appear in order from top to bottom instead of left to right, but I want to center the group, so I have wrapped a div...
Showing results 1 to 23 of 23
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
10:20 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.