No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
hi guys pls help me with this problem i realy can't fix this problem <?php function protect($string){ $string = mysql_real_escape_string($string); $string = strip_tags($string); $string = addslashes($string); return $string; } function connect(){ $con = mysql_connect('127.0.0.1','root', '') or die(mysql_error()); $db = mysql_select_db("users",$con); } ?> // this is for the protect function and … | |
Re: [url]http://justassembly.blogspot.com/[/url] | |
Re: [url]http://justassembly.blogspot.com/[/url] try this | |
Re: [url]http://justassembly.blogspot.com/[/url] try this | |
Re: No quotation marks on [code]cout<<"Your net pay is equeall to: <<net_pay;[/code] Wrong spelling. No display. check this out [code]#include <iostream> #include<conio.h> using namespace std; int main(){ const double rate=16.78; const double social_tax= 0.06; const double federal_tax=0.14; const double state_tax=0.05; const int three_dependents=35; int hours,dependents; double net_pay,x,gross_pay,overtime,state_tax_pay,pay_overtime,social_tax_pay,federal_tax_pay; cout<<" What's your hours … |
The End.