Search Results

Showing results 1 to 40 of 227
Search took 0.02 seconds.
Search: Posts Made By: samarudge
Forum: Graphics and Multimedia 3 Days Ago
Replies: 1
Views: 120
Posted By samarudge
Well the basic HTML embed code looks something like
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/VID-ID"></param><param name="allowFullScreen"...
Forum: Windows NT / 2000 / XP 8 Days Ago
Replies: 3
Views: 221
Posted By samarudge
Download the file attached to this post, extract the file and double click it to run it (Click yes or accept or whatever) and that should enable task manager again.
Forum: JavaScript / DHTML / AJAX 12 Days Ago
Replies: 4
Views: 306
Posted By samarudge
This is a good tutorial on Advanced AJAX with MySQL
http://www.tizag.com/ajaxTutorial/ajax-mysql-database.php
Forum: JavaScript / DHTML / AJAX 12 Days Ago
Replies: 4
Views: 306
Posted By samarudge
The request URL would have _GET varaibles in, just create the file action.php with the contents

<?php
print_r($_GET);
?>

and view the output in Firebug (XHTML requests section)
Forum: JavaScript / DHTML / AJAX 13 Days Ago
Replies: 4
Views: 306
Posted By samarudge
Sending data:
The easiest way to send data to your server from the form is using _GET variables
You can take the variables from your form and add them to your string like this

function action()...
Forum: PHP 14 Days Ago
Replies: 5
Views: 240
Posted By samarudge
All those players are open-source so you can download the source ActionScript 3 files and edit them to your liking, i managed to edit that to get its souce files from an XML source (Dynamicaly)
If...
Forum: PHP 15 Days Ago
Replies: 5
Views: 240
Posted By samarudge
It would need to be done in Flash, not Javascript. I am working on a similar project and my player is roughly based on the source of this
http://flash-mp3-player.net/
Forum: Geeks' Lounge 15 Days Ago
Replies: 5
Views: 548
Posted By samarudge
Hi,
I have just got Google Wave but don't have any contacts (Appart from the person who invited me) I can't figure out how to invite people eather so I was wondering if people would like to post...
Forum: Graphics and Multimedia 17 Days Ago
Replies: 2
Views: 457
Posted By samarudge
OK Thanx, I think I can do a batch convert in Picasa but i can probz do it in Photoshop or Adobe Bridge. The ideal solution would have been to save them as un-editable in the first place but don't...
Forum: JavaScript / DHTML / AJAX 18 Days Ago
Replies: 1
Views: 279
Posted By samarudge
Hi,
I have some code to dynamically retrieve one of three AJAX files and insert it into a DIV

The Javascript is

function createajax() {
var Ajax;
try{
Ajax = new XMLHttpRequest();
}...
Forum: PHP 18 Days Ago
Replies: 8
Views: 512
Posted By samarudge
Not 100% sure what you mean but if you are in the file
/var/www/html/page/index.php (Local/On server)
and you are trying to access a file
/var/www/html/include/page.php (Local)
you can use the...
Forum: Graphics and Multimedia 19 Days Ago
Replies: 2
Views: 457
Posted By samarudge
Hi,
My friend has designed a website in Fireworks/HTML and has just saved all her images in Fireworks/PNG format. She has about 300 images all designed in Fireworks but they have all been saved in a...
Forum: PHP 19 Days Ago
Replies: 4
Views: 223
Posted By samarudge
OK thanx, I think I will stick with my current method of lots of salts (In the actual function I use about 5 different algorithms)
Forum: PHP 19 Days Ago
Replies: 4
Views: 223
Posted By samarudge
Hi,
On my websites, I encrypt passwords using a combination of hashing algorithm (Which I am obviously not going to post on a forum but its along the lines of md5(substr(whirlpool($Value), 0, 7));)...
Forum: PHP 24 Days Ago
Replies: 8
Views: 512
Posted By samarudge
Storing files as, well, files is never a good idea, if stored as PHP files and then include/require(ed) the scripts could contain malicious code. There are two options;
1,
Save the file as .htm,...
Forum: PHP 24 Days Ago
Replies: 8
Views: 512
Posted By samarudge
Storing files as, well, files is never a good idea, if stored as PHP files and then include/require(ed) the scripts could contain malicious code. There are two options;
1,
Save the file as .htm,...
Forum: Windows NT / 2000 / XP 27 Days Ago
Replies: 6
Views: 1,450
Posted By samarudge
I think you might have a virus, make sure you are using one of the big 3 (Norton, AVAST or KAPERSKY/KAPERSPY or however its spelled) and they are fully updated then run a boot scan or run a scan from...
Forum: PHP 29 Days Ago
Replies: 1
Views: 254
Posted By samarudge
Hi,
I have created a script to upload files
$filename = $_FILES['Filedata']['name'];

$filetmpname = $_FILES['Filedata']['tmp_name'];

$fileType = $_FILES["Filedata"]["type"];

$fileSizeMB...
Forum: PHP 30 Days Ago
Replies: 6
Views: 702
Posted By samarudge
If you only have basic FTP access I don't think its possible, some admin panels will let you do it (if you have one) but other than that no ideas so sorry =(
Forum: PHP 30 Days Ago
Replies: 4
Views: 224
Posted By samarudge
Step 1: Get reseller hosting;
90% of reseller hosting services will let you host UNLIMITED WEBSITES with UNLIMITED BANDWIDTH at no extra cost (Although some you have to pay for your domain names but...
Forum: PHP 30 Days Ago
Replies: 5
Views: 275
Posted By samarudge
Not 100% sure what you are trying to do but mysql(i)_insert_id() can get the primary key from the last insert statement
http://php.net/mysql_insert_id
http://php.net/mysqli_insert_id (If using...
Forum: PHP 30 Days Ago
Replies: 5
Views: 275
Posted By samarudge
Not 100% sure what you are trying to do but mysql(i)_insert_id() can get the primary key from the last insert statement
http://php.net/mysql_insert_id
http://php.net/mysqli_insert_id (If using...
Forum: PHP 30 Days Ago
Replies: 6
Views: 702
Posted By samarudge
Several ways to run a PHP script outside browser:
CLI (Command Line Interface)
Call your script like #php /path/to/your/script.php from terminal/CMD
Telnet/SSH (Same as above)
Crond
On *NIX...
Forum: C# 31 Days Ago
Replies: 1
Views: 300
Posted By samarudge
Hi,
What is the function/opperator to calculate a power with C#

I tryed

powerof = anumber ^ anothernumber;


and that clearly doesn't work (1^3 is 2, 2^3 is 1 etc.)
Forum: Graphics and Multimedia 32 Days Ago
Replies: 4
Views: 736
Posted By samarudge
Thank you so much, I would buy you a virtual pint but I don't think that is possible =P
Forum: Graphics and Multimedia 33 Days Ago
Replies: 4
Views: 736
Posted By samarudge
I have been following tutorials all day and none of them work, I just thought that an WEB DESIGN FORUM might be able to help, I didn't see the point in saying "This has taken me the last 8 hours to...
Forum: Graphics and Multimedia 33 Days Ago
Replies: 4
Views: 736
Posted By samarudge
Hi,

I have a movie clip called dsp_albumcover (Already created and on the stage, instance name is dsp_albumcover)

I also have a variable with a .jpg file (Can be changed to any other though)...
Forum: Posting Games 33 Days Ago
Replies: 0
Views: 523
Posted By samarudge
You must post a compleatly disasociated word to the previous one I.E.

Elephant, Battery is OK
Elephant, Plant is OK
Elephant, Giraph is NOT (Both Animals)
Elephant, Table is NOT (4 Legs)
...
Forum: Posting Games 33 Days Ago
Replies: 0
Views: 465
Posted By samarudge
--Moved This Post---
Forum: Graphics and Multimedia 33 Days Ago
Replies: 5
Views: 782
Posted By samarudge
GENIUS =D
Thanx, marked solved and rep added :P
Forum: Graphics and Multimedia 34 Days Ago
Replies: 5
Views: 782
Posted By samarudge
This is the first time I have ever used AS3, I just want the variable to be available further on in the script (outside onXMLLoaded function)
Forum: Graphics and Multimedia 34 Days Ago
Replies: 5
Views: 782
Posted By samarudge
Hi, I am trying to retrieve the contents of my XML file and use the variables later on in the script;
I have the following actionscript code
// Get XML Vars
var xml:XML;
var urlLoader = new...
Forum: ASP.NET Oct 14th, 2009
Replies: 6
Views: 579
Posted By samarudge
Firefox, Netscape Navigator and Opera will allow target to eather be an id= or a name= whereas IE only allows name= so I have both to cover all browsers
Forum: Geeks' Lounge Oct 14th, 2009
Replies: 411
Views: 43,359
Posted By samarudge
Probz already been posted but hey

Do you believe in Cod?



Christians believe if they do not sin they will have salivation.
Forum: ASP.NET Oct 14th, 2009
Replies: 6
Views: 579
Posted By samarudge
<form id="form1" action="#" method="post" enctype="multipart/form-data" runat="server" target="myframe">
<input type="file" id="myfile" accept="image" runat="server"/>
<input...
Forum: Search Engine Optimization Sep 27th, 2009
Replies: 5
Views: 358
Posted By samarudge
The problem is that I designed a website for someone and at the bottom I put
"Created by Sam Rudge"
When I search for "Sam Rudge" on Google the first result that comes up is that website where as I...
Forum: PHP Sep 26th, 2009
Replies: 4
Views: 317
Posted By samarudge
Thanks for the suggestion but same error again :(
Forum: PHP Sep 26th, 2009
Replies: 1
Views: 238
Posted By samarudge
2 ways to do this
Option 1, as you said, edit the php.ini file
however from what you were saying this may be easyer
at the start of the file that handels the upload (Not the one with the form on)...
Forum: PHP Sep 26th, 2009
Replies: 4
Views: 317
Posted By samarudge
Hi,
I am having a problem with my PHP mail function. I am trying to send an email from user@site.com. This code is fine:

mail($to, $subject, $body,
"From: user@site.com\n" .
...
Forum: PHP Sep 26th, 2009
Replies: 2
Views: 223
Posted By samarudge
Due to the way the HTML file selector works it is not possible to do this through only HTML/PHP
However...
It is possible through Flash
There is a brilliant up-loader here - http://swfupload.org/...
Showing results 1 to 40 of 227

 


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

©2003 - 2009 DaniWeb® LLC