Go Back   CodingForums.com > Search Forums

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
Views: 454
Posted By CourtezBoi
Question 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Views: 530
Posted By CourtezBoi
Thumbs up 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

All times are GMT +1. The time now is 10:20 PM.