- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
20 Posted Topics
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
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 … | |
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 … | |
Re: 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 … | |
Re: 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 | |
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 … | |
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 … | |
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! | |
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 … | |
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: | |
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. | |
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 … | |
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 … | |
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 … | |
![]() | Re: Ajax it into a div. [CODE]ajaxpage('price.htm', 'priceDiv')[/CODE] iframe = ftl ![]() |
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 … | |
[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 … |
The End.