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 36
Search took
0.08
seconds.
Search:
Posts Made By:
munkeyboy
Forum:
PHP
04-23-2011, 05:10 AM
Replies:
24
Very Basic Login Script
Views:
2,034
Posted By
munkeyboy
There are several ways you could go about it, the...
There are several ways you could go about it, the simplest method would be to have a single (separate) page that only had the session_destroy function in it, then by linking to that page you would be...
Forum:
PHP
04-21-2011, 06:54 PM
Replies:
24
Very Basic Login Script
Views:
2,034
Posted By
munkeyboy
Try closing your browser then reopening it before...
Try closing your browser then reopening it before trying to access the form again. It's very possible that your session data is being saved and without having a logout script in place the easiest...
Forum:
Apache configuration
04-21-2011, 06:36 PM
Replies:
1
setup simple file browsing
Views:
826
Posted By
munkeyboy
I'm far from an expert but without some way to...
I'm far from an expert but without some way to capture the user before they access the media file there won't be a way to redirect them. Using the PHP filesystem functions...
Forum:
Computer/PC discussions
04-21-2011, 06:26 PM
Replies:
5
Local Server - Slow
Views:
1,679
Posted By
munkeyboy
If you have all the files located in a single...
If you have all the files located in a single directory and do not have some type of caching/indexing turned on then every time you access the folders from your local computer then it has to...
Forum:
Computer/PC discussions
04-21-2011, 06:16 PM
Replies:
4
retrive the img files after formatting the os
Views:
963
Posted By
munkeyboy
When you say folder lock do you mean the feature...
When you say folder lock do you mean the feature in windows 7 or did you use a third party software? Either way it's most likely that the files were encrypted and without knowing the encryption key...
Forum:
PHP
04-19-2011, 04:27 AM
Replies:
24
Very Basic Login Script
Views:
2,034
Posted By
munkeyboy
Yes that is sufficient, however that wasn't in...
Yes that is sufficient, however that wasn't in the code you posted so as far as we could tell it wasn't there. Once you fix the double equals (==) in your assignment operators then your code should...
Forum:
Computer/PC discussions
04-18-2011, 05:05 AM
Replies:
1
Start up
Views:
651
Posted By
munkeyboy
It is part of the broadcom wireless driver pack,...
It is part of the broadcom wireless driver pack, details (http://www.processlibrary.com/directory/files/bcmwltry/18939/). I would start by re-installing your wireless card drivers, they should be on...
Forum:
Computer/PC discussions
04-16-2011, 12:03 AM
Replies:
7
IP conflict
Views:
1,939
Posted By
munkeyboy
What's happening is your device, we'll call it...
What's happening is your device, we'll call it Device A, is getting assigned a specific IP address let say 192.168.1.5. When you let device A hibernate or go to sleep it remembers that address so...
Forum:
PHP
04-15-2011, 11:34 PM
Replies:
9
Set PHP varibles from javascript varibles
Views:
1,199
Posted By
munkeyboy
Agreed with what Dormilich said, you cannot...
Agreed with what Dormilich said, you cannot directly pass JS variables to PHP. The reason for this is because PHP is processed on the server before the page is rendered and given to the browser...
Forum:
PHP
04-15-2011, 11:23 PM
Replies:
3
mail() not sending in HTML format
Views:
515
Posted By
munkeyboy
Also using a DOCTYPE Declaration wouldn't hurt...
Also using a DOCTYPE Declaration wouldn't hurt either. A friend of mine builds spam emails and he uses HTML 4.01 Transitional but he also likes sloppy code ;).
Forum:
HTML & CSS
04-15-2011, 12:19 AM
Replies:
2
which html version is this code
Views:
336
Posted By
munkeyboy
It's standard XHTML 1.0 but it looks to have been...
It's standard XHTML 1.0 but it looks to have been passed through some type of filter to convert all the less than's and greater than's; <,>, to their html entities. Passing it through the...
Forum:
MySQL
04-15-2011, 12:06 AM
Replies:
10
my query seems its wrong
Views:
1,102
Posted By
munkeyboy
You should run $q through the...
You should run $q through the mysql_real_escape_string (http://php.net/manual/en/function.mysql-real-escape-string.php) function before using it in the select statement. Otherwise you leave yourself...
Forum:
MySQL
04-14-2011, 06:13 PM
Replies:
2
problem inserting $_SESSION data that contains a '
Views:
495
Posted By
munkeyboy
Why not use mysql_real_escape_string on the...
Why not use mysql_real_escape_string on the session variables also? IMO - It should be done to all variables before they are inserted just to add an extra layer of security, even if they were...
Forum:
PHP
04-13-2011, 04:52 PM
Replies:
24
Very Basic Login Script
Views:
2,034
Posted By
munkeyboy
You omitted the session_start() function so your...
You omitted the session_start() function so your variables are getting lost during the page refresh. Also your assignment operators ie $Surname==""; should only have one =.
Forum:
PHP
04-13-2011, 04:30 PM
Replies:
8
Could someone please confirm my approach to security?
Views:
476
Posted By
munkeyboy
The easiest way would likely be to use something...
The easiest way would likely be to use something that is constantly changing like the time() function then hash it to create a alphanumeric string.
$tok = md5(time());
Forum:
HTML & CSS
04-13-2011, 08:10 AM
Replies:
7
Form Different in IE
Views:
613
Posted By
munkeyboy
The problem isn't with your form, it's with the...
The problem isn't with your form, it's with the table that you are using to hold the form fields. Checkout this page (http://www.w3schools.com/html/html_tables.asp) for a pretty good tutorial on...
Forum:
General web building
04-13-2011, 07:54 AM
Replies:
15
A beginner needs help with page
Views:
3,017
Posted By
munkeyboy
Looks pretty clean to me and it renders well in...
Looks pretty clean to me and it renders well in my browser, chrome 10.0.648.204 running on debian lenny. But I'm a developer not a designer so I'm sure others will have a better critique for you.
Forum:
PHP
04-13-2011, 07:28 AM
Replies:
4
problem understanding $_SESSION
Views:
299
Posted By
munkeyboy
According to PHP.net...
According to PHP.net (http://php.net/manual/en/function.session-start.php) session_start() must be called before any output is sent to the browser. This means that anything that can be seen when you...
Forum:
PHP
04-13-2011, 07:21 AM
Replies:
5
Best way to automatically unset memory if user unexpectedly quits the application???
Views:
414
Posted By
munkeyboy
From what I have learned once you get to the...
From what I have learned once you get to the point of building much larger and or memory intensive applications that use a lot of variables, or smaller ones 1000's of times, freeing up memory by...
Forum:
PHP
04-13-2011, 05:55 AM
Replies:
3
Youtube Related codes
Views:
1,007
Posted By
munkeyboy
I tried using the script at the link you posted...
I tried using the script at the link you posted and it seemed like it worked to me, though it didn't create an account. Maybe if you be more specific about how it's not working beyond just asking us...
Forum:
PHP
04-13-2011, 05:24 AM
Replies:
24
Very Basic Login Script
Views:
2,034
Posted By
munkeyboy
That was a bit spiteful don't you think? If...
That was a bit spiteful don't you think? If that's how you react when someone asks a valid question I'd hate to see how you treat a n00b that doesn't know how to use the [code] tags.
Forum:
PHP
04-13-2011, 05:12 AM
Replies:
24
Very Basic Login Script
Views:
2,034
Posted By
munkeyboy
I stand corrected that I my test code was not...
I stand corrected that I my test code was not quite for the same issue, was on the phone while writing it... After adjusting the test script accordingly it would seem that there is not a measurable...
Forum:
PHP
04-13-2011, 04:57 AM
Replies:
24
Very Basic Login Script
Views:
2,034
Posted By
munkeyboy
You had made me curious so I decided to write a...
You had made me curious so I decided to write a test of my own before I saw your post. You can see the code below and view the results at http://www.distortedperception.org/toolbox/drawer/quotes.php...
Forum:
PHP
04-13-2011, 04:25 AM
Replies:
24
Very Basic Login Script
Views:
2,034
Posted By
munkeyboy
Agreed with what Fou-Lu said. Dormilich,...
Agreed with what Fou-Lu said.
Dormilich, why would that no longer be true? Granted I don't have any documentation but it seems logical to me that using single quotes instead of double quotes...
Forum:
Apache configuration
04-11-2011, 10:49 PM
Replies:
11
301 redirect with PHP variables in URL
Views:
4,603
Posted By
munkeyboy
At the very top of attorneydetails.php enter: ...
At the very top of attorneydetails.php enter:
if( $_GET['id'] == 8 ){
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location:...
Showing results 1 to 25 of 36
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:00 AM
.
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.