Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~2K People Reached
Favorite Tags
Member Avatar for kyupa.suria

.............................. <form action="introducere.php" method="POST" enctype="multipart/form-data"> .............................. <td>Picture 1:<input id="picture1" name="picture1" type="file"><br> Picture 2:<input id="picture2" name="picture2" type="file"><br> Picture 3:<input id="picture3" name="picture3" type="file"> </form> .............................. **introducere.php** ............................ if(isset($_FILES['picture1'])){ $file = $_FILES['picture1']; $file_name = $file['name']; echo $file['name']; $picture1 = $file['name']; if(!$picture1){//if no picture browsed $picture1="NULL"; } } if(isset($_FILES['picture2'])){ $file2 = $_FILES['picture2']; $file_name2 = …

Member Avatar for pritaeas
0
321
Member Avatar for kyupa.suria

#include<conio.h> #include<stdio.h> #include<string.h> int mistakes_ctr=0; int x=52, y=22, i; void printM(){ gotoxy(20,20); cprintf("m"); } void printP(){ gotoxy(22,20); cprintf("p"); } void printL(){ gotoxy(24,20); cprintf("l"); gotoxy(34,20); cprintf("l"); } void printA(){ gotoxy(26,20); cprintf("a"); } void printN(){ gotoxy(28,20); cprintf("n"); } void printT(){ gotoxy(30,20); cprintf("t"); } void printO(){ gotoxy(32,20); cprintf("o"); gotoxy(36,20); cprintf("o"); } void printG(){ …

Member Avatar for kyupa.suria
0
206
Member Avatar for T4gal

Hello, When viewing [this page](http://www.jjwangracing.com/setup-sheets-electric/) in IE 8, I'm seeing weird white lines. There is one right below and above the "Coming Soon!" header, and two below the small grey sentance below it. I've looked at the CSS, and I can't see anything that could be causing this, and the …

Member Avatar for T4gal
0
140
Member Avatar for jonathan.gardner.58

I'm interested in learning html,css, flash, java anything to do with web design and so forth. Just wondering if anyone out there has a really good starting point for me. Are there any books i should read or should i just go straight off the web. anything will help. thanks …

Member Avatar for diafol
1
138
Member Avatar for UNDER-18 FG

Here's my assignment question: > **Develop a Payroll class that consists of two user-defined methods, namely calculateNetPay() and printOutput() methods. The calculateNetPay() method is used to calculate the employee's net pay, as the formula follows: > > Net pay = gross pay - state tax and federal tax > > …

Member Avatar for subramanya.vl
0
671
Member Avatar for Fannyyyyyyyyyyyyyyyyy

How do you make a link by a button field. I don't need to ordinary image link or button. But a field (in dreamweaver green transparent) where u can put up coördinates where it belong to with a link to an other page. When to user click on that side …

Member Avatar for jspence29
0
134
Member Avatar for GraficRegret

ok so here is my code: <html> <body> <?php $con = mysql_connect("localhost","username","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_DB", $con); //Get all the data from the table $result = mysql_query("SELECT * FROM Vehicles") or die(mysql_error()); echo "<table border = '1'>"; echo "<tr><th>ID</th><th>Year</th><th>Make</th><th>Model</th> <th>Milage</th><th>Description</th></tr>"; //keeps getting the …

Member Avatar for GraficRegret
0
452