No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
I'm trying to validate certain alphanumeric characters within javascript and all works but a colon (:). My code is: if (![\w_:.=\(\)@\-\/]/.test(field)) return false; I've placed a \ in front of the : and moved the colon to other positions, tried it in its own brackets [:] but it just won't … | |
This code works perfectly in IE 7 and above. The PHP/HTML code has a button to delete/undelete some data. When the icon/button is clicked it enters the javascript function "setdelete". The following HTML code sets up the button for entry into the javascript function. <button id="$delete_icon" value="Delete" onclick="setdelete($key)"><img id="$m_d_img_name" src="images/x_undelete.ico"/></button> … | |
I've recently upgraded to Windows 8.1 and IE 11. When testing my PHP/html/Javascript code, using Xampp, various display and processing errors occur. For example: a particular javascript function doesn't seem to even get get invoked; the javascript return function works differently; icons don't display correctly, etc. When I put the … | |
The following PHP code works fine with javascript in Internet Explorer but fails in Firefox. Javascript is enabled in Firefox. It appears that when the button/icon is clicked, it enters the javascript function, but doesn't change the icon on the page. It also seems to return to the PHP code/page … | |
I cannot download adobe flashplayer on my Windows/XP - IE 8.0 system. Adobe's site says my config. is incompatible. It absolutely is not. I've a 3>0 Ghz processor; IE 8.0; 1.00 GB of RAM & 512 MB of graphics memory. Has anyone encountered this and found a work around? | |
On Windows/XP, I'm getting a module IHU99.tmp.exe being loaded. However, when I search my hard drives I do not find it anywhere. Does anyone know what this is? | |
The iPage ISP places limits on sending emails (200 in 1 hour 2000 in 1 day). I've built a PHPMailer application for a small retirement club that needs only to send out about 250 emails twice per month. iPage will not budge on allowing this to occur. They purport it's … | |
I've tried a number of the HTML/CSS techniques to get my table to scroll horizontally but none of them work. The table has been wrapped with a DIV and the CSS has included the OVERFLOW code but all to no avail. The code is basically like this: [code=html] <div class="Divscroll"> … | |
I've developed a few systems in a PHP-5.3.3 development environment. I'm now implementing them on an iPage host site. Their PHP level is 5.2.12. Two problems occur on their site. (1) when my code [code=php]if (session_id() == "") session_start;[/code] executes on their site it fails. It works fine on my … | |
I'm attempring to save the keys of mysql records in an array but get the Fatal Error: Can't use function return value in write context.. The code is: [code=php]for ($i = 0; $i < $tranrows; ++$i) { $tranrec = mysql_fetch_row($tranresult); $keyarray($i) = $tranrec[0]; }[/code] I've done all the mysql code … | |
This is confusing. I'm creating an index for a MySql table of structure "yyyymm", where "yyyy" is year (e.g. 2011) and "mm" is month (e.g. 02). I acquire them with: [CODE]$yyyy = date('Y', time()); $mm = date('m', time());[/CODE] I subsequently convert them to strings with strval and concatenate them (I've … |
The End.