- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 12
- Posts with Downvotes
- 6
- Downvoting Members
- 10
Hell was full .... so I was sent back.
- Interests
- Guitar, Music, Girls, Chemistry, Web Designing, Technology, Comics, Magazines, Movies, Swimming, Gymming.
- PC Specs
- Disk Space : 500 GB HDD RAM : 4 GB DDR2 Integrated Graphics & Sound Card 16.5 ""…
50 Posted Topics
| |
I recently installed Microsoft Visual Studio 2010 on my computer. I wrote a C++ program and I can't find any Build/Compile/Run options in Visual Studio 2010. Please, any one can tell me how can I compile C++ programs in MS Visual Studio 2010. | |
What do you think, will Google + project will be able to take over FB as the no. 1 social network. I don't it will be able to, looking at the way Google is making people wait for an invite to get in people will eventually lose interest in Google+ … | |
My school and the education board uses Turbo C++ as the compiler. I have Windows 7 64 bit. Can anyone tell me how can I install Turbo C++ on my computer. | |
Hey I created this application, where a user needs to enter a code (which he has bought from me, offline), after filling up the form, he is redirected to a form. The form checks the mysql database where a coloumn "barcode" has been where all the codes already inserted, if … | |
I am using CodeBlocks IDE with Digital Mars compiler, although my program is compiling and there are no errors, when I try to build my program, i get this error and the program isn't running. [CODE]OPTLINK (R) for Win32 Release 8.00.5 Copyright (C) Digital Mars 1989-2009 All rights reserved. http://www.digitalmars.com/ctg/optlink.html … | |
I had setup some submission form using Joomla and a CCK component "Zoo", when i click for the form, i get this error : [CODE]Fatal error: Call to a member function getItem() on a non-object in /home/content/b/o/o/boomshiva/html/tafconnect/bazaar/media/zoo/applications/business/templates/default/renderer/item/submission.php on line 15[/CODE] Can anyone help me with that The contents of the … ![]() | |
Re: [QUOTE=Roxsy3392;214036]Can you please give me one con and two pros on your opinion about death penalty? I say it's not right! I mean, come on! They are going to die a "peaceful" death while the person they killed was violently treated!!! I think they should give them all jail for … | |
Hey, I created a simple user register script which later stores the data in a mysql database. What I did initially was that a small code would count the number of rows in the database and then automatically increase the variable by 1 to set the user id. For example … | |
I wrote this code in php, it's purposes is to update the user record in mySQL database. There's already a script view.php which displays all records in the database, in the view file there's a edit link which sends the user id information to edit.php via get method. on the … | |
Re: There's a problem with your SQL syntax. | |
I wrote this code and when I run the page I get the parse error :- [CODE]Parse error: syntax error, unexpected '[' in C:\xampp\htdocs\view.php on line 30[/CODE] my code is :- i checked my whole code, i was unable to find the error [CODE]<?php $page_title="View Users"; include("header.html"); include("nav.html"); ?> <div … | |
Re: I don't if there is one but you can use this technique :- [CODE]<html> <head> <?php include("somefile.php"); ?> <title><?php echo $page_title; ?></title> </head> </html>[/CODE] The $page_title variable gets it's value from the included files. | |
I wrote this code called delete.php, i have another script called view.php which displays all the users in the database and displays a link to delete that particular record using the get method. In the delete.php file it retrieves the id through get method from the view.php file and deletes … | |
I am learning Javascript, I wrote this JS code and it isn't working as it should be, it is meant to reposition the element square. Here's the code :- [CODE]<!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> <script type="text/javascript" src="test.js"> … | |
Hey, I have Toshiba Satellite A505 laptop and it has an inbuilt mic which I haven't used it for quiet a time now. I went to sound recorder and it said "An audio recording device could not be found", it used to record before. Please help me with that. | |
Re: [QUOTE=Dorar;1586442]so I have to start with HTML if you have any good sources for learning HTML , provide me with them pleaze Thank you Shanti Chepuru Thank you Zero13[/QUOTE] Visit w3schools.com, it's a good place to learn HTML, CSS and PHP. Moreover they have resources for Javascript, XML and etc.. … | |
Re: Can't really help without the image sources. | |
Hey, I have started learning Javascript programming, I wrote these two codes and it thy are not working, it shows a blank page when i load those files. Please help. [CODE]<!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> … | |
Re: Instead of Drupal use Joomla, it's much much simpler, flexible and extensive. | |
Hey, I started learning PHP programming. I wrote this script to update a user's password from the mySQL database, but it's isn't doing so The script is :- [CODE]<?php include("header.html"); include("nav.html"); include("sidebars.html"); ?> <div id="content"> <?php $errors=array(); if(empty($_POST['uname'])) { $errors[]="You forgot to enter your username"; } else { $uname=$_POST['uname']; } … | |
I made two scripts register.php and register1.php, the register.php takes the values and register1.php process them and stores them into a mysql database. after i fill in the form and press submit, I get an error. I am using mySQL 5.5.8 Register.php [CODE]<?php include("header.html"); include("nav.html"); include("sidebars.html"); ?> <html> <form action="register1.php" … | |
Here's my code and I am getting an error undefined variable, this code submits the information submitted by the user to a mysql database. [CODE]<?php include("header.html"); include("nav.html"); include("sidebars.html"); ?> <?php $errors=array(); if(isset($_POST['submitted'])){ if(empty($_POST['fname'])){ $errors[]="You forgot to enter first name"; } else{ $fn=$_POST['fname']; } if(empty($_POST['lname'])){ $errors[]="You forgot to enter last name"; … | |
Hey, I am new to PHP and I wrote this it supposed to validate the from and add the errors to an array variable (which will be showed on later), I am having problems on line 41, when I run the script it says [B]Parse error: syntax error, unexpected '{' … | |
hey i just started learning php programming, i wrote this code, although the HTML code and forms and everything is working but when i click on submit nothing happens. the code :- [CODE]<?php include("header.html"); include("nav.html"); include("sidebars.html"); ?> <?php if(isset($_POST['submitted'])) { if((isset($_POST['name']))&&(isset($_POST['school']))&&(isset($_POST['marks']))&&(isset($_POST['sex']))) { if($_POST['marks']>=80) $grade='A'; else if(($_POST['marks']>=70)&&($_POST['marks']<80)) $grade='B'; else if(($_POST['marks']<70)&&($_POST['marks']>=60)) $grade='C'; … | |
hey, i started learning javascript programing n i wrote this simple code to test, it isn't working, here's the code :- [CODE]<script type="text/javascript"> { function mltest() { var fnmae=document.myForm.fName.value; var mName=document.myForm.mName.value; var lName=document.myForm.lName.value; var rtxt; rtxt="Your full name is : "; rtxt+=fName; rtxt+=mName; rtxt+=lName; var finalName=""; document.myForm.finalName.value=rtxt; } } </script> … | |
Re: Mine are :- [QUOTE] 1. Katrina Kaif - very very very sexy 2. Cameron Diaz 3. Minisha Lamba 4. Bipasha Basu 5. Kristen Stewart 6. Megan Fox - very very very sexy 7. Kate Winslet 8. Nicole Kidman [/QUOTE] | |
| |
i have joomla installed for my website. i get this error when i try to export something. [CODE]Fatal error: Call to a member function children() on a non-object in /home/infunity/public_html/administrator/components/com_zoo/elements/repeatable/repeatable.php on line 52[/CODE] how can i fix it? | |
I have an excel file with 400 records. The records in this format :- " name, email, 1,1 " One record occupies 1 cell. Now I want to create one column for name and for email and for 1 and 1. How can I do that? | |
I made my website on Joomla, the template has been designed by me. I installed a component for Joomla called ZOO by Yootheme.com I am using one of their app called Business Directory for Zoo. When I published my directory on the page I cannot see the titles of the … | |
I wrote this small program that enters a password from a user and displays '*' instead of the letters so I could add this into my project. I compiled it through Dev C++ using Windows 7 and I am getting errors, please help me out. The program :- [CODE] #include<iostream.h> … | |
I wrote a program and created an object with fstream. Eg. [CODE] fstream f1; f1.open("s.dat",ios::out|ios::binary); f1.close(); [/CODE] Generally if there's no file such as s.dat, then it creates a file by the name but it it's creating one instead it exits the program. I have to then manually create a … | |
Re: Here's the correct code for the 2nd program [CODE] int num; cout<<"Please enter a number: "; cin>>num; for(int i=1;i<num;i=i+2) { cout <<" "<< num; } cout <<"end"; return 0; } [/CODE] | |
Re: Umm... what does this command do :- [CODE]system("pause")[/CODE] | |
| |
There are 2 many images on the site, so I am not putting them, here's the link : SNIP God, that's toooooo hilarious. | |
Re: Pakistani's gone bonkas. Think that they can easily award Mark Zuckerburg death penalty. HAHAHAHAHHAHAHAHAHAHAHAHA. | |
I created this function for my program : [CODE]int calcTotal() { petShop p; fstream f1; f1.open("Pet_Shop.dat",ios::app|ios::binary); int loc; loc=p.tellp(); float records; records=loc/sizeof(p); cout<<"Total number of records = "<<records; cout<<"Going back to main menu"; menu(); }[/CODE] I am getting this error : [CODE]error C2039: 'tellp' : is not a member of … | |
Hey guys. I am a shy person and there's a girl in my class I like. I don't know her as I am new to the class. Please tell me how should I be friends with her. | |
I made a c++ program. I used cin.getline() function so I could input a string from the user. But when I run the program it does not input anything nor gives me a change to input anything instead it goes to the next statemement. For eg. this is my program … | |
What's the difference between return (0); and return 0; | |
Re: There's plenty need for web designers. I have designed websites for 3 companies and all the companies didn't know anything of available templates. There are many people who don't know the existence of premade templates, so they end up in hiring people like us. | |
Re: [QUOTE=timbomo;1195845]Hows this? [CODE] while (!in_stream2.eof()) // reads file to end of file { while((price== (price*1.00)) && (itemnum == (itemnum*1))) { in_stream2 >> itemnum >> price; price++; curr_total= price++; in_stream2 >> curr_total; cin.clear(); // allows more reading cin >> next; return itemnum, price; } }[/CODE][/QUOTE] what does cin.clear() do? | |
Re: [QUOTE=Argo54325;1249622]Hello, I've been trying to figure out how to create a layout similar to the one on [URL="www.worldofwarcraft.com"]www.worldofwarcraft.com[/URL]. What i'm looking for is a way to have the two side images "shrink" when the browser is made smaller. Could anyone help me out please? If someone is wanting to write … | |
It's my school project, I wrote this C++ program with file handling. I am getting these errors and I can't understand what's causing the errors, if anyone can rectify my program, that would be great. My program :- [CODE]#include<fstream.h> // for C++ and File-Handling functions #include<conio.h> // for getch() and … | |
Re: [QUOTE=ashima 2;1253140]plz send me some imp in c & c++ urgently my exam is after 2 days[/QUOTE] Everything is important. What you are saying is basically you want us to post everything so you can mug up from the site in 2 days for your exam and that's not gonna … | |
Re: [QUOTE=muth23;1252435]Say I have a main page called advertisement html and a iframe on a templet page. I need to get a page within the site call add_pages to load into the frame when ever the advertisement page is loaded. I to have several other pages load into the iframe whenever … | |
Hey I am Dhruv. 17 yrs old from India in 12th grade studying non-medical sciences. I am little into programming and more into web designing. My website is SNIP but right now the server's down. |
The End.