Search found 4 matches

by steppinthrax
Thu Apr 29, 2010 6:07 pm
Forum: PHP - Security
Topic: Simple 4 field form on public facing website
Replies: 2
Views: 1251

Simple 4 field form on public facing website

Are there any speical considerations I need to take for a very simple 4 field form that captures Name, Email, Message Area (400 chars). When a user hits submit it sends the data a table in a database. This data is filtered using htmlspecialchars() and mysqli_real_escape_string()

Thank You
by steppinthrax
Tue Apr 20, 2010 11:37 am
Forum: Databases
Topic: FOR THE LIFE OF ME I CAN'T CALL A STORED PROCEDURE FROM PHP
Replies: 2
Views: 599

Re: FOR THE LIFE OF ME I CAN'T CALL A STORED PROCEDURE FROM

Never Mind i got it working

I changed everything to mysqli and it started working....
by steppinthrax
Tue Apr 20, 2010 11:07 am
Forum: Databases
Topic: FOR THE LIFE OF ME I CAN'T CALL A STORED PROCEDURE FROM PHP
Replies: 2
Views: 599

FOR THE LIFE OF ME I CAN'T CALL A STORED PROCEDURE FROM PHP

This is my code: <?php /*Includes for the hours*/ $link = mysql_connect("localhost", "AppUser_HAE", "1234"); if (!$link) { die('Could not connect: ' . mysql_error()); } mysql_select_db("HAE", $link); $result = mysql_query("call hae.disp_cch"); while(...
by steppinthrax
Thu Mar 11, 2010 3:24 pm
Forum: General Discussion
Topic: Getting into PHP on a Windows Based Box
Replies: 3
Views: 875

Getting into PHP on a Windows Based Box

I'm in the process of developing a website in PHP using MySQL as a backend. My primary web-development knowledge is mainly C#.NET, I've never really done any programming in PHP. I need to develop a site for a client and be able to present the site LOCALLY on my machine. As I understand you need appa...