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.

0 Endorsements
~1K People Reached
About Me

Me = Wife + Programming

Interests
Loving , Programming , Database
PC Specs
Quad Core Q8400 , 8GB Memmory , ATI 4850 , 1.5 TB HDD , I/O Devices
Favorite Tags
Member Avatar for istore221

<?php $user_name = $_POST["NameBox"]; $user_contact = null; $user_contact=$_POST["ContactBox"]; $comment = $_POST["msgbox"]; if($user_contact==null) { $user_contact = "Not provided"; } $to = "mymail@domain.com"; $subject = "Message From Web"; $body = "Contact name is = $user_name | Contact number is = $user_contact | user comment is = $comment"; mail($to,$subject,$body); header("Location:http://www.masconsolidated.com/confirmation.html"); exit; ?> this …

Member Avatar for Anuradha_2
0
252
Member Avatar for istore221

Okey pros i have a small question.assume that below sinario where i have a Two tables called Organizatioin and Organization_Members (One organization can have many members 1 to Meny) **Organizatioin** Organization_ID - PK Organization_Name Tel **Organization_Members** Member_ID - PK Organization_ID - FK First_Name Last_Name Tel I recently developed a system …

Member Avatar for Ketsuekiame
0
205
Member Avatar for istore221

[Click Here](http://www.nsbm.lk/target_home.php?eid=overview) please refer this link and click on Quick Links the side elements (content area) changing without loading page how do i archive this in my web site i can create page for each and every Quick Link but i dont wannna do that i want to display that …

Member Avatar for JorgeM
0
104
Member Avatar for istore221

<body> <a href="#" class="show_hide">Show/hide</a> <div class="slidingDiv"> Fill this space with really interesting content. <a href="#" class="show_hide">hide</a> <P>aasasasas</P> </div> <div id="content"> </div> </body> $(document).ready(function(){ $(".slidingDiv").hide(); $(".show_hide").show(); $('.show_hide').click(function() { $(".slidingDiv").slideToggle(); }); }); .slidingDiv { height:300px; background-color: rgb(34,34,34); padding:20px; margin-top:10px; } .show_hide { display:none; } #content { width:900px; height:400px; background:rgb(85,85,85); } My problam …

Member Avatar for LastMitch
0
106
Member Avatar for istore221

okey i have upload my site everything works just fine except my contact form here's my code FYI - Im very new to the php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <?php $user_name = $_POST["NameBox"]; $user_contact …

Member Avatar for istore221
0
272
Member Avatar for istore221

hay pros i have a problam..i need to create a line report based on a stored proc everythings working fine..but in original result set i have a 44 records ..in my line chart i have all the bars but not labels.. my quary returns ArtistName and number of albums ex.. …

0
58
Member Avatar for istore221

[Click Here](http://img96.imageshack.us/img96/1272/sucksu.png) I Have create a folder using my VB Project.how do i access it through my code..this folder contain all the contacts images in my programe.i mean i know the folder path in my computer if i instal my programe in a another pc how do i get the …

Member Avatar for Begginnerdev
0
146
Member Avatar for istore221

CREATE TABLE Contain ( Disk_ID int NOT NULL, Artist_ID int NOT NULL, CONSTRAINT Fk_Disk_id FOREIGN KEY(Disk_ID) REFERENCES Disks(Disk_ID) ON DELETE CASCADE, CONSTRAINT Fk_Artist_id FOREIGN KEY(Artist_ID) REFERENCES Artists(Artist_ID) ON DELETE CASCADE, ) I have a Home Music Managment Database and software to work with it. I have 4 relational Tables i …

Member Avatar for adam_k
0
110