Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K

20 Posted Topics

Member Avatar for davy_yg

As broj1 said - you need to put `session_start()` at the top of your admin script to be able to assign any session variables for retrieval later. Every other page that accesses, updates, or creates `$_SESSION[]` variables needs to have `session_start()` at the top of the file (before processing any …

Member Avatar for broj1
-1
171
Member Avatar for koneill

Using a tool like firebug, developer tools, or element inspector (depending on what browser you are using) you should be able to view the source live and ensure that the value is indeed getting set inside your imgTwo field. Also - what does the subMailValidator look like? Perhaps there is …

Member Avatar for koneill
0
345
Member Avatar for Keyra Lee

Just like gabrielcastillo said - concatenate them in php after the post before your insert. However you may want to add a space or use the slash you are displaying inbetween the fields on the form. $val1 = $_POST['NF1']; $val2 = $_POST['Y2']; $total_value = $val1 . "/" . $val2; $sql …

Member Avatar for Casperjames
0
290
Member Avatar for v1shwa

You are correct, making a table field for each day of the month is messy and is bound to cause issues. You could create a new table called user score that links to the user table and stores the user_id the date and the score for that day. Then you …

Member Avatar for v1shwa
0
214
Member Avatar for Casperjames

I'm fighting with jquery flexigrid - below is my format. I can get the flexigrid to load thousands of lines if I load them all into a single page, however I want to split out pages inside my json response. According to the documentation I believe my format is correct …

0
88
Member Avatar for Casperjames

Device Boot Start End Blocks Id System /dev/cciss/c0d0p1 * 2048 499711 248832 83 Linux /dev/cciss/c0d0p2 501758 573366271 286432257 5 Extended /dev/cciss/c0d0p5 501760 573366271 286432256 83 Linux Okay, we are building a new data server that has 6 disks - we partitioned the first 4 as a RAID 1 and the …

Member Avatar for rch1231
0
598
Member Avatar for mwenyenia07

SELECT Max(CAST(column_name AS UNSIGNED)) from table_name where column_name REGEXP '^[0-9]+$' As pritaeas said - a max on varchar would be comparing them as string values, I've had this issue before when ordering. What you need to do is cast the field as UNSIGNED in your query and that will then …

Member Avatar for Casperjames
0
566
Member Avatar for ImZick

Hello Zick! I have used PHP Datatables library with good success, it has pagination and search functionality. You can view some examples and download the code h[ere](http://datatables.net/release-datatables/examples/basic_init/zero_config.html). It's 100% free and can be used with multiple data sources including MySQL

Member Avatar for broj1
0
2K
Member Avatar for Casperjames

I have searched the google machine to the ends of they internets and back again and tried everything from clean builds to removing registry entries. This has vexed me for the past week. It all started out as a simple application project windows form style. New project deserves new visual …

Member Avatar for Casperjames
0
2K
Member Avatar for Casperjames

Hello all, This is my first site project using codeigniter. The frontend is all html and I am using codeigniter for the backend. Everything was working fine until I added the frontend files and modified my htaccess file to not redirect to index.php but instead to index.html. htaccess looks like …

Member Avatar for cereal
0
416
Member Avatar for Casperjames

Hey all, writing some code but keep getting a javascript related "Not Implemented" error. The code is window.onload=setTimeout('loadAll()',10); The code works fine but the error is annoying in that "An error has occured.." keeps popping up. Oh how I love cross browser coding. Anyways, any input is appreciated, thanks!

Member Avatar for Casperjames
0
115
Member Avatar for Casperjames

Hey guys, using a dynamic div here to spit out definitions based on final dispositions of records. I have a database that contains all dispositions and the definitions of each disposition. I want to break after so many characters, so i use the php wordwrap() function but get an odd …

Member Avatar for pzuurveen
0
180
Member Avatar for Casperjames

Keep getting this message and it's rather annoying, google is no help at all. I keep getting a different ID every single time as well. Any help is greatly appreciated. Thanks! Broadcast message from root (Tue Feb 28 08:59:16 2012): FONmon: Apache PID mistmatch -> fpid: 10464 != mpid:

Member Avatar for Casperjames
0
140
Member Avatar for Casperjames

Here's what I want: [CODE]$practice_name = preg_replace("/\([^\)]+\)/","",$practice_name); echo($practice_name); [/CODE] But that does not work when I reference the variable then. This however does work. [CODE]echo(preg_replace("/\([^\)]+\)/","",$practice_name));[/CODE] But I do not want to update my code every time I reference $practice_name, I only want to update where the variable gets assigned.

Member Avatar for Casperjames
0
121
Member Avatar for Casperjames

So here's the scenario guys. I am currently developing a php MUD. There is a specific section where I want the content to load one letter at a time much like someone on the other end of the interwebs is typing it out to the user. (I'm sure you've all …

0
53
Member Avatar for Casperjames

HELP ME! So my dad's compaq lappy died and he bought another one from his neighbor for $100. Turns out that thing is so bogged down with nasties it's not even remotely funny. I d/l'd MBAM and tried to update. ERROR 12092, can't update last database was 12/20/2010 so I …

Member Avatar for jholland1964
0
232
Member Avatar for Casperjames

So.... Pretty strange thing is happening to me. I have a scrolling thumbnail marquee which on click pops up an image box div and replaces the thumbnail with a larger image, sets the src, then re-replaces the thumbnail. This works perfectly on my local machine but when uploaded to the …

Member Avatar for Casperjames
0
174
Member Avatar for ovidiu_b13
Member Avatar for ovidiu_b13
0
142
Member Avatar for Casperjames

So researching amniotic band syndrome the other night I came across a "Known Attack Site" warning. I got the hell out of there and after I closed my browser Firefox just sits there with a pretty white page (Untitled) while IE says "Internet Explorer cannot display the webpage". I was …

Member Avatar for crunchie
0
683
Member Avatar for Casperjames

[CODE]/** * Finds the angles of A, B, and C when given the sides. * Caleb Hess * 4/27/07 */ public class Triangle { /** *@param a the length of a for the triangle *@param b the length of b for the triangle *@param c the length of c for …

Member Avatar for Casperjames
0
239

The End.