Search Results

Showing results 1 to 40 of 53
Search took 0.01 seconds.
Search: Posts Made By: Josh Connerty
Forum: Windows NT / 2000 / XP Sep 5th, 2009
Replies: 10
Views: 682
Posted By Josh Connerty
Have you tried another mouse? It sounds more like the mouse as oppose to the OS.
Forum: Windows NT / 2000 / XP Sep 5th, 2009
Replies: 8
Views: 687
Posted By Josh Connerty
Forgot or forgets? I should imagine it has an easy fix in the registry, have you tried contacting microsoft about registry entries for live?

I presume you have reinstalled messenger?
Forum: PHP Aug 20th, 2009
Replies: 14
Views: 702
Posted By Josh Connerty
Okay, I will let you down gently, I think it's a bit farfetched to explain this through a forum. It is virtually imposible for me to tell you how to do this.

The two tables are vastly different.
...
Forum: PHP Aug 20th, 2009
Replies: 14
Views: 702
Posted By Josh Connerty
Yes thats right, either attach them to a post or open them up and copy and paste the contents into [code=sql] tags. ;)
Forum: PHP Aug 20th, 2009
Replies: 7
Views: 722
Posted By Josh Connerty
Basicly, just use your orignal document. Make a submit button that will go to another document.

In this document you will need to handle the posted data. You will need to make queries dependant on...
Forum: PHP Aug 20th, 2009
Replies: 14
Views: 702
Posted By Josh Connerty
Right first of all you need to export the tables from wich you think the members are held.

You need to do this for both, after doing so you can post them in [code=sql] tags.
Forum: PHP Aug 20th, 2009
Replies: 3
Views: 290
Posted By Josh Connerty
I would suggest also making a dedicated table for the user preferences. However I would suggest making a column for each preference. Eg. user_id, gardening, pet, food.

As for the pets, gardening...
Forum: PHP Aug 20th, 2009
Replies: 14
Views: 702
Posted By Josh Connerty
Okay well I first need to ask how dedicated you are to this?

This is a complex proccess!

Basicly to start with you will need to compare the two database systems. In order for them to work...
Forum: PHP Jul 16th, 2009
Replies: 21
Views: 1,355
Posted By Josh Connerty
Another point, with MySql the advice given is you use as many tables as possible as to releive the stress on any one particular table.
Forum: PHP Jul 16th, 2009
Replies: 21
Views: 1,355
Posted By Josh Connerty
No youre right in what you are saying, however I think what he is wanting is something that will perform these things without page refresh.

Okay, please export your database using phpmyadmin and...
Forum: Motherboards, CPUs and RAM Jul 11th, 2009
Replies: 25
Solved: need RAM help
Views: 1,606
Posted By Josh Connerty
Yes clearing the CMOS sounds like the next step. Other than that you may have to find someone else with a 1GB stick of DDR and see if theirs works any better, by this I mean one that doesn't need to...
Forum: PHP Jul 10th, 2009
Replies: 7
Views: 956
Posted By Josh Connerty
This might sound daft but why not loop it until you have sent the mail to everyone?

This might cause a strain on the server CPU though.
Forum: PHP Jul 10th, 2009
Replies: 19
Views: 547
Posted By Josh Connerty
Oh thats because you need to declare the ones in the form as $_POST['Title'] etc as you are only declaring them if the form has been submitted try this:

<?php

if ( isset( $_POST['send'] ) ) {
...
Forum: Motherboards, CPUs and RAM Jul 10th, 2009
Replies: 25
Solved: need RAM help
Views: 1,606
Posted By Josh Connerty
It sounds more like a dodgey stick of RAM, I know AMD motherboards can have the funnies but it is unlikely. I have had an eMachines Intel Celeron M system and that had a 512MB RAM that I upgraded to...
Forum: PHP Jul 10th, 2009
Replies: 19
Views: 547
Posted By Josh Connerty
Oh and try to avoid using the @ suppresants until you have the script working and perfect else you may be missing some important errors.
Forum: PHP Jul 10th, 2009
Replies: 19
Views: 547
Posted By Josh Connerty
Try this as yours is riddled with errors:

<?php

if ( isset( $_POST['send'] ) ) {
// The author's details have been updated.


$title = $_POST['Title'];
$subtitle =...
Forum: PHP Jul 9th, 2009
Replies: 5
Views: 853
Posted By Josh Connerty
Selects and Radios should be fine as long as you give them the value in witch you wich to be in the database.

<input type="radio" name="you_field" value="Male" />

If you were to insert the...
Forum: PHP Jul 8th, 2009
Replies: 21
Views: 1,355
Posted By Josh Connerty
Okay then in that case you will need to use AJAX, are you aware of this?

You will need to add a javascript event to your "term" text box.

<input type="text" name="term" onkeyup="javascript:...
Forum: PHP Jul 7th, 2009
Replies: 21
Views: 1,355
Posted By Josh Connerty
If it a parse error it would state so. If it doesn't either say Fatal Error: or [icode]Parse Error: .......... On Line: ... In *Document Name*[/icode or something similar.

If neither of these ar...
Forum: PHP Jun 16th, 2009
Replies: 5
Views: 551
Posted By Josh Connerty
I suppose you could yes, you would need to play a little with the configuration. When I say a little I mean you would have to literally rewrite allot of how wordpress work.

Also I have had my...
Forum: PHP Jun 12th, 2009
Replies: 9
Views: 541
Posted By Josh Connerty
I don't agree. As long as you use correct cyntax (ie. `desc`) and as long as you know what `desc` means it isn't a problem. I use desc myself.
Forum: PHP Jun 11th, 2009
Replies: 2
Views: 284
Posted By Josh Connerty
number_format( $string , 2 , "Decimals" , "Thousands" );



function fomat_brazil ( $case ) {
// Presuming the brazilian use "," as the equvilant of "." or the reverse
echo number_format( $case...
Forum: PHP Jun 11th, 2009
Replies: 22
Views: 1,036
Posted By Josh Connerty
<?php

mysql_connect("localhost","root","");

mysql_select_db("student") or die("Unable to select database");
?>

<form name="form" action="result.php" method="get">

Subject <input...
Forum: PHP Jun 7th, 2009
Replies: 10
Views: 536
Posted By Josh Connerty
Sorry, so are the DIV's fetched from the database? Presuming it is MySql then you can add ORDER BY column ASC/DESC Column being the column name to identify the divs and DESC meaning descending and...
Forum: PHP Jun 7th, 2009
Replies: 10
Views: 536
Posted By Josh Connerty
Hmmmm, is this changing often. You mentioned using JavaScript to change them. Will JavaScript be changing them often?

If so then you might aswell get JavaScript to order them. Theres little point...
Forum: PHP Jun 7th, 2009
Replies: 5
Views: 578
Posted By Josh Connerty
Well good thats easier for you then.

You need to look into PHP scandir() and PHP explode() then take a look at the mysql_() functions.

This will basicly tell you what you need to know.
Forum: PHP Jun 6th, 2009
Replies: 6
Views: 336
Posted By Josh Connerty
is the DB on local host or a remote machine?
Forum: PHP Jun 6th, 2009
Replies: 5
Views: 578
Posted By Josh Connerty
Does pdf and txt have to be as a string or jumbled up chars?
Forum: PHP Jun 4th, 2009
Replies: 11
Views: 775
Posted By Josh Connerty
Basicly you use the page.php with file_get_contents() to retreive the remote page.

This will only happen once your page has loaded and when javascript uses AJAX to take whatever the page.php...
Forum: PHP Jun 4th, 2009
Replies: 11
Views: 775
Posted By Josh Connerty
Yarp thats why you must make the page.php to retrieve it for you.
Forum: PHP Jun 4th, 2009
Replies: 11
Views: 775
Posted By Josh Connerty
Yep make another file called page.php then use JavaScript and AJAX to retrieve it once your document is ready.

In this page.php you use file_get_contents() to retrieve the files contents.
Forum: PHP Jun 3rd, 2009
Replies: 21
Views: 1,099
Posted By Josh Connerty
I suppose so, I don't feel to happy taking FTP details as I only take those kind of details for a project or paid services. This way the user (i.e you) has some kind of security.

I think I might...
Forum: PHP Jun 3rd, 2009
Replies: 21
Views: 1,099
Posted By Josh Connerty
Just to clarify, does the cookie holsd the username? if not then the script needs to be changed...

Infact are you using PHP Sessions?

The sooner you tell me these things the sooner I can send...
Forum: PHP Jun 3rd, 2009
Replies: 21
Views: 1,099
Posted By Josh Connerty
<?php
include("include/session.php");
?>
<html>
<title>bla bla</title>
<body>

<table>
<tr><td>
Forum: PHP Jun 2nd, 2009
Replies: 21
Views: 1,099
Posted By Josh Connerty
echo "<h2>Your available downloads</h2>"

you missed the closing ;

echo "<h2>Your available downloads</h2>";
Forum: PHP Jun 1st, 2009
Replies: 9
Solved: php and mysql
Views: 448
Posted By Josh Connerty
lol easy mistake to make.

Can you mark this as solved please?

Thanks,
Josh Connerty
Forum: PHP Jun 1st, 2009
Replies: 21
Views: 1,099
Posted By Josh Connerty
I may be able to do it for you...

It'd be easier if you have the users id or username in the cookie?

You will need to add another table!

Execute this for the table
Forum: PHP May 31st, 2009
Replies: 9
Solved: php and mysql
Views: 448
Posted By Josh Connerty
0I think cpanel has the databse wizard correct? Well when you create a user you must add them to the database you are using. This is because the user can do everything they need to do but have no...
Forum: PHP May 30th, 2009
Replies: 9
Solved: php and mysql
Views: 448
Posted By Josh Connerty
Hmmm who is your web server host? Youm are right this seems very much like you either have the wrong username or password or maybe a database name etc.

There are a few ways you can debug this...
Forum: PHP May 30th, 2009
Replies: 9
Solved: php and mysql
Views: 448
Posted By Josh Connerty
<?php
mysql_connect("localhost", "user", "password");
mysql_select_db("MyDataBase");
$mydbstuff = mysql_query("SELECT * FROM `MyTable`");
$ALine = mysql_fetch_array( $mydbstuff );
$theTitle =...
Showing results 1 to 40 of 53

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC