- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
Re: Try this sql code, it might help. SELECT pt.tid, pt.did, pt.eid FROM pat_table INNER JOIN test_table tt on tt.tid = pt.tid INNER JOIN doc_table dt on dt.did = pt.did INNER JOIN emp_table et on et.did = pt.did | |
Re: To convert \r\n to <br> you can use `nl2br($text)` | |
Re: You need to give `exit;` after `fclose($out);` to avoid further printing of html tags. | |
Re: Better create a script to destroy unnecessary $_SESSION and $_COOKIES of your website. Then it might cleanup unnecessary sessions which exists on user browsers. | |
Re: If you feel PDFlib is difficult, then tcpdf might very easier to handle. Of course you need little knowledge. After downloading tcpdf, then given some examples PHP files. Just copying those code, putting into your website and finally pass the html content their method will work. Yesterday only i did … | |
Re: May be try this to loop your second level of array. [CODE]if ((array_key_exists($header, $entry)) && ($entry[$header] != 'Array')){ echo "<td>"; foreach($entry[$header] as $key => $value) { echo $key . ' - ' . $value . "<br />"; } echo "</td>"; }[/CODE] | |
Re: You have to use cron job option in your web hosting control panel. Which helps you to trigger and run the script at specified time. | |
Re: In line 150 of form1.js, add msg to display detail error which comes from server. [CODE]$('#regform #formProgress').html('There was an error . Please try again.' + msg);[/CODE] I feel there is curly braces missing after [CODE]$lname = mysql_real_escape_string($_POST['last_name']);[/CODE] and another problem, you have not passed [B]submit[/B] to server in [CODE]var dataString … | |
Re: If you show some specific code and where you require that lock image to be displayed. Then easily we can help you out. | |
Re: [QUOTE=oxymeboy;410027]This is late reply to this post but it might help someone searching with this problem. I found that creating the new element within the same document I needed to append to fixed a similar problem I was having. So in this case creating the new div like this may … |
The End.