Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 280
Search took 0.51 seconds.
Search: Posts Made By: kokjj87
Forum: PHP 06-24-2011, 02:41 AM
Replies: 1
Views: 1,039
Posted By kokjj87
print_r the $attachment, see if it is the...

print_r the $attachment, see if it is the tmp_name of the upload file.
Forum: PHP 06-22-2011, 01:38 AM
Replies: 6
Views: 902
Posted By kokjj87
Simple as this... you need to know how to check...

Simple as this... you need to know how to check whether a user is login or not....


//your check_login function here.
echo (check_login()) ? "logout.php" : "login.php" ;
Forum: PHP 06-22-2011, 01:32 AM
Replies: 1
Views: 207
Posted By kokjj87
Error no 1: 'date' should be '$date' 2: Not...

Error no
1: 'date' should be '$date'
2: Not a full SQL Query string... Select/Update????
3: Do error checking... see whether are you able to connect to database? able to select table? able to run...
Forum: PHP 06-22-2011, 01:20 AM
Replies: 6
Views: 902
Posted By kokjj87
Hmm.. Unless you are going to login with the ajax...

Hmm.. Unless you are going to login with the ajax interface/without redirection then you will need javascript to change the login link to the logout link.

Have tested your link... You don't need...
Forum: PHP 06-21-2011, 01:42 AM
Replies: 2
Views: 512
Posted By kokjj87
Your server side code needs to run the ffmpeg...

Your server side code needs to run the ffmpeg command on the commad line.
Depending on whether you are running linux or windows, the way you execute the command might be a bit different.
...
Forum: Small projects (quick fixes and changes) 06-15-2011, 04:16 AM
Replies: 11
Views: 3,022
Posted By kokjj87
You actually trust him when he only got 1 post in...

You actually trust him when he only got 1 post in this forum?
Forum: Geek News and Humour 07-04-2009, 11:27 AM
Replies: 14
Views: 1,801
Posted By kokjj87
I use both of them frequently... #1 for more...

I use both of them frequently... #1 for more compact code, #2 for readability... and I voted for #2...
Forum: PHP 06-04-2009, 08:50 AM
Replies: 3
Views: 810
Posted By kokjj87
Use the base64_encode and base64_decode function...

Use the base64_encode and base64_decode function to convert images between binay and text.

http://php.net/base64_encode
Forum: Small projects (quick fixes and changes) 06-02-2009, 07:19 AM
Replies: 5
Views: 5,553
Posted By kokjj87
$50 is way too low for this project. You...

$50 is way too low for this project.

You also need to buy the data in order to locate the proxy exact area/location..

Strong search engine (for leeching) feature needs a lot of maintenance, in...
Forum: Small projects (quick fixes and changes) 05-31-2009, 05:38 AM
Replies: 4
Views: 2,800
Posted By kokjj87
PMed you. :p

PMed you. :p
Forum: PHP 05-27-2009, 03:21 AM
Replies: 1
Views: 2,425
Posted By kokjj87
You can use regular expression to parse the url....

You can use regular expression to parse the url. http://php.net/preg_match

This would parse the url and print the video id, I have make both http:// and www. optional

$url =...
Forum: Computer/PC discussions 05-27-2009, 02:43 AM
Replies: 10
Views: 2,856
Posted By kokjj87
I use Open Dns on my home router and there is a...

I use Open Dns on my home router and there is a significant increase in speed, especially during the peak period... Oh well, my ISP Suck Big Time..
Forum: PHP 05-23-2009, 03:28 AM
Replies: 6
Views: 843
Posted By kokjj87
Yes Notepad++ is must for all windows user, its...

Yes Notepad++ is must for all windows user, its fast, responsive and take up a lot less memory..

Eclipse(PDT, Apatana) are really nice if you are working on a bigger project- intellisense from...
Forum: Computer Programming 05-22-2009, 06:24 PM
Replies: 9
Views: 1,502
Posted By kokjj87
You are not suppose to put this whole chunk of...

You are not suppose to put this whole chunk of code in to yours just like that, this is a function, not a normal procedure.

void bubbleSort(int iArray[], int array_size)
{
int i, j, temp;

...
Forum: Computer Programming 05-22-2009, 05:22 PM
Replies: 9
Views: 1,502
Posted By kokjj87
I think that the bubble sorting algorithm that...

I think that the bubble sorting algorithm that you are trying to implement is wrong..
take a look here..

http://www.algorithmist.com/index.php/Bubble_sort.c
Forum: Computer Programming 05-22-2009, 02:48 AM
Replies: 9
Views: 1,502
Posted By kokjj87
Welcome to the coding forums! Here are the...

Welcome to the coding forums!

Here are the mistake that i have spot in your code.

1.You are going to store 10 int in your array, so you must declare a int array that can store 10 int value.....
Forum: PHP 05-21-2009, 03:02 PM
Replies: 5
Views: 1,961
Posted By kokjj87
Log out from the account, and tell the someone...

Log out from the account, and tell the someone about it.
I'm sure you won't like other people to login as your account and view your email and private stuff.
Forum: PHP 05-21-2009, 11:54 AM
Replies: 10
Views: 757
Posted By kokjj87
There is nothing wrong with this code, what does...

There is nothing wrong with this code, what does it show when you run this code?

please check your that the information you have entered is correct, username, password, table name.. and also add...
Forum: PHP 05-21-2009, 11:00 AM
Replies: 5
Views: 7,134
Posted By kokjj87
Inigoesdr is right, when there is no referrer, it...

Inigoesdr is right, when there is no referrer, it can only be 2 things, first is the user access the page directly, second is some of the internet security program(like norton) blocks it..
Forum: PHP 05-21-2009, 10:30 AM
Replies: 10
Views: 757
Posted By kokjj87
MySql Count statement.. SELECT COUNT(*) FROM...

MySql Count statement..
SELECT COUNT(*) FROM music;
http://dev.mysql.com/doc/refman/5.1/en/counting-rows.html
Forum: PHP 05-20-2009, 02:32 PM
Replies: 6
Views: 3,891
Posted By kokjj87
The purpose of this site is for people to post...

The purpose of this site is for people to post their code, but it will run the php code and display the result..
http://codepad.org

Or you can just upload this simple script to you own server..
...
Forum: PHP 05-20-2009, 01:24 PM
Replies: 1
Views: 11,803
Posted By kokjj87
The trick is to serialize the javascript array,...

The trick is to serialize the javascript array, sent it to php, and in php use the unserialize function to convert it to a php array..

This is a javascript function call serialize..

function...
Forum: Computer Programming 05-19-2009, 02:16 PM
Replies: 6
Views: 1,104
Posted By kokjj87
The link to the download is here: ...

The link to the download is here:
http://prdownloads.sourceforge.net/dev-cpp/devcpp-4.9.9.2_nomingw_setup.exe
Forum: PHP 05-19-2009, 12:26 PM
Replies: 2
Views: 2,493
Posted By kokjj87
Take a look at this implementation: ...

Take a look at this implementation:
http://jaspan.com/improved_persistent_login_cookie_best_practice
Forum: Computer Programming 05-18-2009, 06:11 PM
Replies: 6
Views: 1,104
Posted By kokjj87
Here is one good and free one: ...

Here is one good and free one:
http://www.bloodshed.net/dev/devcpp.html

Or you can try visual studio express edition, it's free too
Showing results 1 to 25 of 280

 
Forum Jump

All times are GMT +1. The time now is 07:58 PM.