Forum: PHP Aug 21st, 2009 |
| Replies: 0 Views: 158 i am doing my final year at university and i am supposed to do a project dissertation. Can someone help me with a project topic. I would prefer a project that is inclined to php or web development |
Forum: Networking Hardware Configuration Jan 31st, 2009 |
| Replies: 0 Views: 395 i joined a new organisation and was given a Total Control Enterprise Network Hub. which have the following :
NIC
10/100 NMC NIC
Dual 10/100 PC Ethernet NIC
Dual 10/100 PC Ethernet NIC
... |
Forum: PHP Nov 7th, 2008 |
| Replies: 4 Views: 500 try this :
http://www.webmastergate.com/php/paginate-query-results.html
hope its what you are looking for. I tried it and it works |
Forum: PHP Jul 25th, 2008 |
| Replies: 3 Views: 555 Hie everyone.
Its been a year now using PHP and i think i do understand it now but dont understand what a PHP framework is and what it is used for, how it works, and if its necessary to use it.
... |
Forum: PHP Feb 23rd, 2008 |
| Replies: 2 Views: 497 try modify this code to suit what you want
$name= "record to delete"
$sql = "DELETE FROM Users WHERE Name= '$name'"or die ("ERROR: Cannot not find user!"); |
Forum: PHP Feb 23rd, 2008 |
| Replies: 1 Views: 488 try to use page redirection to the required page after user validation
You can try this code
if ($user="admin")
{ |
Forum: PHP Feb 20th, 2008 |
| Replies: 19 Views: 1,428 can u give us the code that u have so that we can see where u are getting it wrong |
Forum: PHP Jan 31st, 2008 |
| Replies: 4 Views: 885 try this javascript function which will be called with php code
add this code in your inside the head tag but below the title tag
<script type="text/JavaScript">
<!--
function... |
Forum: PHP Jan 29th, 2008 |
| Replies: 5 Views: 598 i have a website and it have a flash banner. the problem is that every time i open a link the banner will have to reload again.
is there any way that i can use on my links so that when the link is... |
Forum: PHP Jan 28th, 2008 |
| Replies: 9 Views: 1,683 to concatenate in php you use a period/full stop
change this line
echo "<p>",$lname, ", ",$fname, ", ",$dob;
to
echo "<p>".$lname. ", ". $fname. ", ".$dob. ",".$reg_num; |
Forum: PHP Dec 20th, 2007 |
| Replies: 3 Views: 785 You can also try this one.
for example on page1.php you can have a link that when clicked will pass variables to page2,php
page1.php
<?php
echo "<a... |
Forum: PHP Dec 19th, 2007 |
| Replies: 9 Views: 1,011 can you please be specific.
Do you want to put content from database into drop down or from a table. If from a table where is the content coming from |
Forum: PHP Dec 19th, 2007 |
| Replies: 9 Views: 1,011 try this code it works for me
<?php
$host="localhost"; // Host name
$username="root"; // Mysql username
$password=""; // Mysql password
$db_name="forum"; // Database name... |
Forum: PHP Oct 5th, 2007 |
| Replies: 1 Views: 691 i have this code which is supposed to increment a counter on page
<?php
//create a file called counter.txt and upload it to your server
//now open the file
$fp =... |
Forum: PHP Sep 29th, 2007 |
| Replies: 4 Views: 6,287 use the following code:
i have just included the first row and hope you will not have problems with the rest:
<?php
echo "<table cellspacing='4' cellpadding='4' border=1... |
Forum: PHP Sep 14th, 2007 |
| Replies: 3 Views: 5,369 there is this code
$var1='done'
header("Location: index.php?$var1");
and now want to pass the value in the variable $var1 and store it in another variable in index page |
Forum: IT Professionals' Lounge Sep 14th, 2007 |
| Replies: 0 Views: 790 How do you provide email service on mobile phones.I want a system that sends email from cell to cell and also from computer to cell and cell to computer without limiting the file size.What... |
Forum: PHP Sep 13th, 2007 |
| Replies: 1 Views: 1,670 i have this code:
[CODE]
include('DB_connection.php');
$result = mysql_query('select * from login');
$count = mysql_num_fields($result);
for ($i = 0; $i < $count; $i++){
$header .=... |
Forum: PHP Sep 12th, 2007 |
| Replies: 3 Views: 5,369 code in login page is:
header("Location: index.php?$page");
how do i get the data from the variable in index page after redirect from login page |
Forum: PHP Sep 11th, 2007 |
| Replies: 3 Views: 731 i mean the TLD (top level domain) with '.zw'.
want to put a serch engine on my site that will find all TLD ending with 'zw' |
Forum: ASP Sep 11th, 2007 |
| Replies: 1 Views: 9,020 i have a problem when i am running asp files on linux server running apache. The pages wont open or process the data |
Forum: PHP Sep 10th, 2007 |
| Replies: 3 Views: 731 Is there a free script that i can use to search any website that is in my own country. |
Forum: C Oct 24th, 2006 |
| Replies: 8 Views: 1,818 here is the whole program:
line in bold when debugged is giving the value of currunt->words as Could not watch this variable
#include <iostream.h>
#include <stdlib.h>
#include <stdio.h>... |
Forum: C Oct 24th, 2006 |
| Replies: 8 Views: 1,818 temp has value of : "is"
check->value has avue of: Could not watch this variable |
Forum: C Oct 24th, 2006 |
| Replies: 8 Views: 1,818 i tried that but when debugging i am having this error
An Access violation(segment fault) raised in your program.
the line of code crushinhg the program is: |
Forum: C Oct 24th, 2006 |
| Replies: 8 Views: 1,818 the function first search a word from the linked list. if found it then increment the numWords (number of words in listfor that word) and if not found it shoud create a new node for the word.
the... |
Forum: C Oct 23rd, 2006 |
| Replies: 8 Views: 1,910 i finally got it right my mistake was here:
int getCount(char word)
it should be:
int getCount(char word[30]) |
Forum: C Oct 23rd, 2006 |
| Replies: 8 Views: 1,910 herer is the code of the list:
struct doc_words
{
char words[30];
struct doc_words *next;
};
and the code of the function: |
Forum: C Oct 23rd, 2006 |
| Replies: 8 Views: 1,910 i have this line of code and want to compare the word from the linked list with the one supplied by user.
the code is:
if (strcmp(p->word,word)==0)
and i am having this error:
passing... |
Forum: C Oct 22nd, 2006 |
| Replies: 4 Views: 1,458 thank you so much, it is now saving in the list. |
Forum: C Oct 22nd, 2006 |
| Replies: 4 Views: 1,458 here is code
#include <iostream.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include <string.h> |
Forum: C Oct 22nd, 2006 |
| Replies: 4 Views: 1,458 can someone please help me to write a code in c to do the following:
1)read words from a file
2)store the words in a linked list
3)read the words and display
4)count the number of words in list |
Forum: Community Introductions Nov 7th, 2005 |
| Replies: 3 Views: 1,332 my name is collins tirivamwe. i am from zimbabwe.
just want to welcome you.
hope to share |
Forum: Community Introductions Nov 7th, 2005 |
| Replies: 3 Views: 1,332 hie my name is collins tirivamwe. just want tio welcome you. |
Forum: Community Introductions Nov 7th, 2005 |
| Replies: 4 Views: 1,705 hie
its so good that you do love cricket. actually i do play cricket and in the first team at universty where i am styding IT. i am an off spinner and i like the following players muralitharan... |
Forum: Community Introductions Oct 31st, 2005 |
| Replies: 4 Views: 1,705 my name is collins tirivamwe.i am a zimbabwean.iam currently a university student studying IT.i love programming very much.hope and promise to contribute and share what i know with you. |