Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~31.1K People Reached
About Me

Born in PR 1971, finished studies in Commercial Graphic Design in 2000. Self introduced to PHP, MySQL and JavaScript scripting in 2009. Work as a web developer in Texas for an international Health Care Product Manufacture Company.

Interests
My hobbies are learning something new each day specially about technology and computer programming.…
PC Specs
Fluent in PHP/JavaScript Language and MySQL. Like MacOS by it looks (Graphic Designers side), but always…
Favorite Forums
Favorite Tags

17 Posted Topics

Member Avatar for Behseini

You need javascript or jQuery. Everything to be requested on the user side has to be handle by javascript, now, if you just want to refresh the page and then retrieve the information you need to use ardav solution as well, for example with a GET method the form attribute …

Member Avatar for dheerajvermawd
0
23K
Member Avatar for raphie

I would like to add an advanced print form into a customer web site. They have an online web form but they also want to have the form break apart into sections as PDF files so it's distributor print out only the sections they need. The full order form is …

Member Avatar for dean8710
0
2K
Member Avatar for dyingatmidnight

Are you using Dreamweaver because of your current job or just because you have bought it. This feature is available with [URL="http://netbeans.org/"]Netbeans[/URL] from Oracle, at work I have to use Dreamweaver CS3 but I download Netbeans for better and faster coding. It has the power of Dreamweaver and the cool …

Member Avatar for bdwild
0
165
Member Avatar for abelingaw

Try to use instead of id="myusername" use name="myusername", depending how you processing the form and the server you are using, sometimes cause problems. $_POST is normally set by the name of the input not the id. In some systems a nameless input is considered disabled an pass no values. You …

Member Avatar for raphie
0
230
Member Avatar for morrisproject

I guess the information is stored in a database right? If so query the database and if record is true echo a different state of the button: [CODE] <?php include_once your_connection_page.php mysql_select_db(yourdatabase); $q = mysql_query("SELECT `id`,`title`,`date` FROM `your_db_name` WHERE `user` = `".$_SESSION['user']."`;") or die('Error retrieving info!'); $r = mysql_num_rows($q); if($r …

Member Avatar for raphie
0
3K
Member Avatar for geneh23

use.. [CODE] if(is_resource($query)){ while( $row = mysql_fetch_assoc($query)) { $categories = array('id'=>$row['id'],'name'=>$row['name']); } return $categories; } else { die(mysql_error()); } [/CODE] To see what happens!

Member Avatar for geneh23
0
132
Member Avatar for maxelcat

Looking good, Internet Explorer 9, Windows Vista Ultimate SP2, but I have a really slow connection and the slider blinks until all the images are completely loaded, you might considered to show an alternate static image then when the page is completely loaded then start the slider.

Member Avatar for raphie
0
119
Member Avatar for jessicaw

You might need to create and CSS specially for IE and added in the source code... example: [CODE] <!--[if IE]> <style> #sub_right_column_container { margin-top:80px; } <!-- or external link --> </style> <link type="txt/css" href="/css/ie_hacks.css" rel="stylesheet" media="all" /> <![endif]--> [/CODE] Between the <head> tags. It happens to me in a page …

Member Avatar for raphie
0
161
Member Avatar for gg3l

try: [CODE] <!DOCTYPE html> <html> <head> <script> function resize(){ var bodyWidth = document.body.offsetWidth; var bodyHeight = document.body.offsetHeight; var el = document.getElementById('elm2').style; if( bodyWidth < 1000){ el.width='1000px'; } else { el.width='100%'; } if( bodyHeight < 600){ el.height='600px'; } else { el.height='100%'; } } </script> </head> <body onResize="resize();"> <div id="elm2"></div> </body> </html> …

Member Avatar for raphie
0
244
Member Avatar for 18engineer

Every time you use JavaScript to pass information to a PHP page you need to make sure to encode the strings. And also to add slashes before sending to Database. Normally the problem relies in JavaScript handling string information. If the string includes and &(ampersand) will break the string into …

Member Avatar for Sorcher
0
117
Member Avatar for mehdi.yazdani

As dandello said, you need to use [URL="http://acefitness.infopop.net/infopop/ubbcode.html"]UBB code[/URL]... If you're using jQuery look for the cleditor plug-in or the UBB editor plug-in [URL="http://www.webcheatsheet.com/javascript/bbcode_editor.php"]here[/URL]. If adding the code option is what you really need try this one in [URL="http://corpocrat.com/2008/08/15/free-wysiwyg-bbcode-editor-in-javascript/"]corpocrat.com[/URL] .

Member Avatar for Dandello
0
113
Member Avatar for jacob21

Try to encode the string. JavaScript doesn't like quotes, ampersand or others alpha numeric characters that are use to suggest the closing of a variable or a function in JavaScript. [CODE]escape($('#desc').val());[/CODE] Then when you retrieve the strings in the addpg.php make sure to use [CODE]stripslashes($_POST['desc']);[/CODE] if you want to echo …

Member Avatar for Stefano Mtangoo
0
201
Member Avatar for nick_90

The other error I noticed is that the form method is post and your requesting the $_GET['artist_id'] and should be $_POST['artist_id']; Never mind, $_GET is for the edit.

Member Avatar for raphie
0
272
Member Avatar for TwinsInTow

I used to face that problem but was such a long time I don't even use Wordpress so often, but there's a page that normally has an empty space bellow the line code [CODE]?>[/CODE] When you remove that space this fix the problem in some cases. Also check if the …

Member Avatar for TwinsInTow
0
308
Member Avatar for asif49

I think you're needing Regular Expressions methods look into the [URL="http://us.php.net/manual/en/book.pcre.php"]PHP Manual[/URL] you might find what you're looking for! For example: [CODE]preg_match('/'.$space.'/g',$search);[/CODE] or [CODE]preg_match('/(hello|world)/g',$search);[/CODE] This will match all the occurrences in a string that matches whatever is in the $space variable or by the worlds between the parenthesis separated by …

Member Avatar for raphie
0
86
Member Avatar for amjones

As stymiee said... CSS is the best option... example [CODE] @media print{ #div_not_to_print{ display:none; } #div_to_print{ display:inline-block; } } [/CODE] If every element in your HTML has id or class declare not to print the desired id or class, so when they print the page only print the desire area …

Member Avatar for fxm
0
251
Member Avatar for smartness

if you create a form to submit with all the fields need it the code you need for php to communicate with the db and insert the info is... Need to create a variable to enclosed the query... and set all the columns you want to insert data and use …

Member Avatar for smartness
0
336

The End.