473,401 Members | 2,139 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,401 software developers and data experts.

Uploading a file and $_FILES

Hello,

I am a newbie to PHP, MySQL. I am trying to create a basic file upload
form. I want to get that working and then I want to integrate that
into a form that will rename the file and save it to a directory and
store the path to the file in the db, in addition to storing other text
from other fields in the form. Then I will get that path using PHP to
display the image file in a browser.

First things first, I'm having difficulty getting the basic file upload
form working.

Here is the code I am using:

<form enctype="multipart/form-data" action="<?php print
$_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="50000">
Select a file: <input name="upfile" type="file">
<input type="submit" value="Upload">
</form>

<?php
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
?>

When I load the page the following text is always displayed on the
page:
"File upload failedArray ( )"

When I upload a file I recieve the following text on the page:
"File upload was successfulArray ( [upfile] =Array ( [name] =>
testing.php [type] =application/octet-stream [tmp_name] =>
/tmp/phpVtNHIr [error] =0 [size] =574 ) )"

I think my issue is with the $_FILES. Do I have to change the name and
tmp_name values? The documentation is sort of vague to me, but then
again I am pretty new to this. I know there are security issues and
there is a lot more that needs to be done, but I need to start with the
basics here.

Any input or advice that anyone can give would be greatly appreciated.
Also, if there are any online references that you could provide would
be great. Thanks in advance!

Aug 11 '06 #1
8 3457
I am guessing you have already checked the php.net website for
assistance. http://us3.php.net/features.file-upload. The text "File
upload failedArray ( )" will always show cause it is not enclosed
within any of your if statements.

In regards to the file upload do a search for the test file if you have
access to the server. The problem, i think I had this too when I first
started, is the location you are moving the file to.

Hope this helps.
mp*****@gmail.com wrote:
Hello,

I am a newbie to PHP, MySQL. I am trying to create a basic file upload
form. I want to get that working and then I want to integrate that
into a form that will rename the file and save it to a directory and
store the path to the file in the db, in addition to storing other text
from other fields in the form. Then I will get that path using PHP to
display the image file in a browser.

First things first, I'm having difficulty getting the basic file upload
form working.

Here is the code I am using:

<form enctype="multipart/form-data" action="<?php print
$_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="50000">
Select a file: <input name="upfile" type="file">
<input type="submit" value="Upload">
</form>

<?php
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
?>

When I load the page the following text is always displayed on the
page:
"File upload failedArray ( )"

When I upload a file I recieve the following text on the page:
"File upload was successfulArray ( [upfile] =Array ( [name] =>
testing.php [type] =application/octet-stream [tmp_name] =>
/tmp/phpVtNHIr [error] =0 [size] =574 ) )"

I think my issue is with the $_FILES. Do I have to change the name and
tmp_name values? The documentation is sort of vague to me, but then
again I am pretty new to this. I know there are security issues and
there is a lot more that needs to be done, but I need to start with the
basics here.

Any input or advice that anyone can give would be greatly appreciated.
Also, if there are any online references that you could provide would
be great. Thanks in advance!
Aug 11 '06 #2

mrsticks1982 wrote:
I am guessing you have already checked the php.net website for
assistance. http://us3.php.net/features.file-upload. The text "File
upload failedArray ( )" will always show cause it is not enclosed
within any of your if statements.

In regards to the file upload do a search for the test file if you have
access to the server. The problem, i think I had this too when I first
started, is the location you are moving the file to.

Hope this helps.
Thanks for the response, but I'm not sure that I understand what you
are saying. What don't I have included in my if statements? Thanks
again!

Aug 11 '06 #3
mp*****@gmail.com wrote:
Hello,

I am a newbie to PHP, MySQL. I am trying to create a basic file upload
form. I want to get that working and then I want to integrate that
into a form that will rename the file and save it to a directory and
store the path to the file in the db, in addition to storing other text
from other fields in the form. Then I will get that path using PHP to
display the image file in a browser.

First things first, I'm having difficulty getting the basic file upload
form working.

Here is the code I am using:

<form enctype="multipart/form-data" action="<?php print
$_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="50000">
Select a file: <input name="upfile" type="file">
<input type="submit" value="Upload">
</form>

<?php
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
?>

When I load the page the following text is always displayed on the
page:
"File upload failedArray ( )"

When I upload a file I recieve the following text on the page:
"File upload was successfulArray ( [upfile] =Array ( [name] =>
testing.php [type] =application/octet-stream [tmp_name] =>
/tmp/phpVtNHIr [error] =0 [size] =574 ) )"

I think my issue is with the $_FILES. Do I have to change the name and
tmp_name values? The documentation is sort of vague to me, but then
again I am pretty new to this. I know there are security issues and
there is a lot more that needs to be done, but I need to start with the
basics here.

Any input or advice that anyone can give would be greatly appreciated.
Also, if there are any online references that you could provide would
be great. Thanks in advance!
Yes, the message will always be displayed because when you first load
the page you don't have anything in your $_FILES array. That only comes
after you've entered a filename and submitted your form.

Remember - PHP is SERVER SIDE. By the time your browser gets the page,
ALL of the PHP code has been executed.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Aug 11 '06 #4
mp*****@gmail.com wrote:
Hello,

I am a newbie to PHP, MySQL. I am trying to create a basic file upload
form. I want to get that working and then I want to integrate that
into a form that will rename the file and save it to a directory and
store the path to the file in the db, in addition to storing other text
from other fields in the form. Then I will get that path using PHP to
display the image file in a browser.

First things first, I'm having difficulty getting the basic file upload
form working.

Here is the code I am using:

<form enctype="multipart/form-data" action="<?php print
$_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="50000">
Select a file: <input name="upfile" type="file">
<input type="submit" value="Upload">
</form>

<?php
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
?>

When I load the page the following text is always displayed on the
page:
"File upload failedArray ( )"

When I upload a file I recieve the following text on the page:
"File upload was successfulArray ( [upfile] =Array ( [name] =>
testing.php [type] =application/octet-stream [tmp_name] =>
/tmp/phpVtNHIr [error] =0 [size] =574 ) )"

I think my issue is with the $_FILES. Do I have to change the name and
tmp_name values? The documentation is sort of vague to me, but then
again I am pretty new to this. I know there are security issues and
there is a lot more that needs to be done, but I need to start with the
basics here.

Any input or advice that anyone can give would be greatly appreciated.
Also, if there are any online references that you could provide would
be great. Thanks in advance!
Jerry told you the reason, and here is (sort of) solution. Execute php
code only when page was POST requested (meaning that the form was submitted)
to do so simply wrap your php code in one more if...
<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
}
?>

That should work... :)
--

B.r.K.o.N.j.A = Bionic Robotic Knight Optimized for Nocturnal Judo and
Assasination
Aug 11 '06 #5

B.r.K.o.N.j.A wrote:
mp*****@gmail.com wrote:
Hello,
>
I am a newbie to PHP, MySQL. I am trying to create a basic file upload
form. I want to get that working and then I want to integrate that
into a form that will rename the file and save it to a directory and
store the path to the file in the db, in addition to storing other text
from other fields in the form. Then I will get that path using PHP to
display the image file in a browser.
>
First things first, I'm having difficulty getting the basic file upload
form working.
>
Here is the code I am using:
>
<form enctype="multipart/form-data" action="<?php print
$_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="50000">
Select a file: <input name="upfile" type="file">
<input type="submit" value="Upload">
</form>
>
<?php
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
?>
>
When I load the page the following text is always displayed on the
page:
"File upload failedArray ( )"
>
When I upload a file I recieve the following text on the page:
"File upload was successfulArray ( [upfile] =Array ( [name] =>
testing.php [type] =application/octet-stream [tmp_name] =>
/tmp/phpVtNHIr [error] =0 [size] =574 ) )"
>
I think my issue is with the $_FILES. Do I have to change the name and
tmp_name values? The documentation is sort of vague to me, but then
again I am pretty new to this. I know there are security issues and
there is a lot more that needs to be done, but I need to start with the
basics here.
>
Any input or advice that anyone can give would be greatly appreciated.
Also, if there are any online references that you could provide would
be great. Thanks in advance!
>

Jerry told you the reason, and here is (sort of) solution. Execute php
code only when page was POST requested (meaning that the form was submitted)
to do so simply wrap your php code in one more if...
<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
}
?>

That should work... :)
--

B.r.K.o.N.j.A = Bionic Robotic Knight Optimized for Nocturnal Judo and
Assasination
Thank you for the response. It's still not working. I checked the
path and I checked the file permissions and everything looks right.

I get the following from print_r: Array ( [upfile] =Array ( [name] =>
Jets.jpg [type] =image/jpeg [tmp_name] =/tmp/phpu6J23o [error] =0
[size] =27241 ) )

I think those results look to be normal, but I'm not 100% sure. Does
anyone have any thoughts on this?

Thanks!

Aug 12 '06 #6
mpar612 wrote:
B.r.K.o.N.j.A wrote:
>>mp*****@gmail.com wrote:
Hello,

I am a newbie to PHP, MySQL. I am trying to create a basic file upload
form. I want to get that working and then I want to integrate that
into a form that will rename the file and save it to a directory and
store the path to the file in the db, in addition to storing other text
from other fields in the form. Then I will get that path using PHP to
display the image file in a browser.

First things first, I'm having difficulty getting the basic file upload
form working.

Here is the code I am using:

<form enctype="multipart/form-data" action="<?php print
$_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="50000">
Select a file: <input name="upfile" type="file">
<input type="submit" value="Upload">
</form>

<?php
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
?>

When I load the page the following text is always displayed on the
page:
"File upload failedArray ( )"

When I upload a file I recieve the following text on the page:
"File upload was successfulArray ( [upfile] =Array ( [name] =>
testing.php [type] =application/octet-stream [tmp_name] =>
/tmp/phpVtNHIr [error] =0 [size] =574 ) )"

I think my issue is with the $_FILES. Do I have to change the name and
tmp_name values? The documentation is sort of vague to me, but then
again I am pretty new to this. I know there are security issues and
there is a lot more that needs to be done, but I need to start with the
basics here.

Any input or advice that anyone can give would be greatly appreciated.
Also, if there are any online references that you could provide would
be great. Thanks in advance!

Jerry told you the reason, and here is (sort of) solution. Execute php
code only when page was POST requested (meaning that the form was submitted)
to do so simply wrap your php code in one more if...
<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
}
?>

That should work... :)
--

B.r.K.o.N.j.A = Bionic Robotic Knight Optimized for Nocturnal Judo and
Assasination


Thank you for the response. It's still not working. I checked the
path and I checked the file permissions and everything looks right.

I get the following from print_r: Array ( [upfile] =Array ( [name] =>
Jets.jpg [type] =image/jpeg [tmp_name] =/tmp/phpu6J23o [error] =0
[size] =27241 ) )

I think those results look to be normal, but I'm not 100% sure. Does
anyone have any thoughts on this?

Thanks!
What message are you getting now? And what's the response from
move_uploaded_file?

You're trying to put the file in the 'uploads' directory, which would be
relative to this script. Does it exist, and does the Apache user have
write access to this directory? Does the file exist?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Aug 12 '06 #7

Jerry Stuckle wrote:
mpar612 wrote:
B.r.K.o.N.j.A wrote:
>mp*****@gmail.com wrote:
Hello,

I am a newbie to PHP, MySQL. I am trying to create a basic file upload
form. I want to get that working and then I want to integrate that
into a form that will rename the file and save it to a directory and
store the path to the file in the db, in addition to storing other text
from other fields in the form. Then I will get that path using PHP to
display the image file in a browser.

First things first, I'm having difficulty getting the basic file upload
form working.

Here is the code I am using:

<form enctype="multipart/form-data" action="<?php print
$_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="50000">
Select a file: <input name="upfile" type="file">
<input type="submit" value="Upload">
</form>

<?php
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
?>

When I load the page the following text is always displayed on the
page:
"File upload failedArray ( )"

When I upload a file I recieve the following text on the page:
"File upload was successfulArray ( [upfile] =Array ( [name] =>
testing.php [type] =application/octet-stream [tmp_name] =>
/tmp/phpVtNHIr [error] =0 [size] =574 ) )"

I think my issue is with the $_FILES. Do I have to change the name and
tmp_name values? The documentation is sort of vague to me, but then
again I am pretty new to this. I know there are security issues and
there is a lot more that needs to be done, but I need to start with the
basics here.

Any input or advice that anyone can give would be greatly appreciated.
Also, if there are any online references that you could provide would
be great. Thanks in advance!


Jerry told you the reason, and here is (sort of) solution. Execute php
code only when page was POST requested (meaning that the form was submitted)
to do so simply wrap your php code in one more if...
<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
}
?>

That should work... :)
--

B.r.K.o.N.j.A = Bionic Robotic Knight Optimized for Nocturnal Judo and
Assasination

Thank you for the response. It's still not working. I checked the
path and I checked the file permissions and everything looks right.

I get the following from print_r: Array ( [upfile] =Array ( [name] =>
Jets.jpg [type] =image/jpeg [tmp_name] =/tmp/phpu6J23o [error] =0
[size] =27241 ) )

I think those results look to be normal, but I'm not 100% sure. Does
anyone have any thoughts on this?

Thanks!

What message are you getting now? And what's the response from
move_uploaded_file?

You're trying to put the file in the 'uploads' directory, which would be
relative to this script. Does it exist, and does the Apache user have
write access to this directory? Does the file exist?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Thanks for your response. I think I just solved my own problem. I
need to ensure that the temporary directory is titled "tmp_name". Is
there a particular reason why the directory has to be called
"tmp_name"? I tried changing it to just "tmp" and the script would not
work.

Thank you so much for all of your help.

Aug 13 '06 #8
mpar612 wrote:
Jerry Stuckle wrote:
>>mpar612 wrote:
>>>B.r.K.o.N.j.A wrote:
mp*****@gmail.com wrote:

>Hello,
>
>I am a newbie to PHP, MySQL. I am trying to create a basic file upload
>form. I want to get that working and then I want to integrate that
>into a form that will rename the file and save it to a directory and
>store the path to the file in the db, in addition to storing other text
>from other fields in the form. Then I will get that path using PHP to
>display the image file in a browser.
>
>First things first, I'm having difficulty getting the basic file upload
>form working.
>
>Here is the code I am using:
>
><form enctype="multipart/form-data" action="<?php print
>$_SERVER['PHP_SELF']; ?>" method="post">
><input type="hidden" name="MAX_FILE_SIZE" value="50000">
>Select a file: <input name="upfile" type="file">
><input type="submit" value="Upload">
></form>
>
><?php
>$uploaddir = "uploads/";
>$uploadfile = $uploaddir . $_FILES['upfile']['name'];
>if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
> print("File upload was successful");
> } else {
> print("File upload failed");
> }
> print_r($_FILES);
>?>
>
>When I load the page the following text is always displayed on the
>page:
>"File upload failedArray ( )"
>
>When I upload a file I recieve the following text on the page:
>"File upload was successfulArray ( [upfile] =Array ( [name] =>
>testing.php [type] =application/octet-stream [tmp_name] =>
>/tmp/phpVtNHIr [error] =0 [size] =574 ) )"
>
>I think my issue is with the $_FILES. Do I have to change the name and
>tmp_name values? The documentation is sort of vague to me, but then
>again I am pretty new to this. I know there are security issues and
>there is a lot more that needs to be done, but I need to start with the
>basics here.
>
>Any input or advice that anyone can give would be greatly appreciated.
>Also, if there are any online references that you could provide would
>be great. Thanks in advance!
>

Jerry told you the reason, and here is (sort of) solution. Execute php
code only when page was POST requested (meaning that the form was submitted)
to do so simply wrap your php code in one more if...
<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
$uploaddir = "uploads/";
$uploadfile = $uploaddir . $_FILES['upfile']['name'];
if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
print("File upload was successful");
} else {
print("File upload failed");
}
print_r($_FILES);
}
?>

That should work... :)
--

B.r.K.o.N.j.A = Bionic Robotic Knight Optimized for Nocturnal Judo and
Assasination
Thank you for the response. It's still not working. I checked the
path and I checked the file permissions and everything looks right.

I get the following from print_r: Array ( [upfile] =Array ( [name] =>
Jets.jpg [type] =image/jpeg [tmp_name] =/tmp/phpu6J23o [error] =0
[size] =27241 ) )

I think those results look to be normal, but I'm not 100% sure. Does
anyone have any thoughts on this?

Thanks!

What message are you getting now? And what's the response from
move_uploaded_file?

You're trying to put the file in the 'uploads' directory, which would be
relative to this script. Does it exist, and does the Apache user have
write access to this directory? Does the file exist?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================


Thanks for your response. I think I just solved my own problem. I
need to ensure that the temporary directory is titled "tmp_name". Is
there a particular reason why the directory has to be called
"tmp_name"? I tried changing it to just "tmp" and the script would not
work.

Thank you so much for all of your help.
The directory itself can be any directory you have write access to. The
array index, however, must be 'tmp_name' - it's defined that way in PHP.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Aug 13 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: lion | last post by:
I get these errors when uploading images via a web page: (the page still uploads the images but reports these errors?) Warning: fopen(D:\php\uploadtemp\php1FC7.tmp) : failed to create stream: No...
1
by: Sheldon Glickler | last post by:
I am having a problem uploading on one system and not on another with very similar code in two different applications. I suspect that it has to do with server settings. Here is the code that...
2
by: underground | last post by:
I need a little help figuring this one out. I have a script that should post mutiple binary files into a single row but instead of copying the indiviuals files it rewrites the first file to all the...
10
by: underground | last post by:
I need a little help figuring this one out. I have a script that I've modified to post mutiple binary files into a single row but instead of copying the indiviuals files it rewrites the first file to...
6
by: ajaykataram | last post by:
Hi all i am getting error in the following code to upload files csv and txt files i have to insert the following values only into database if firstname,lastname and email id is null it should not...
3
chunk1978
by: chunk1978 | last post by:
hi there... i have a form where a user may optionally upload a maximum of 2 files along with other textual data (there are 2 file fields built in the form). i'm having trouble writing a php script...
14
w33nie
by: w33nie | last post by:
What I'm trying to do here, is upload a video to the ../video/ folder, and up to 5 images to the ../images/ folder. As well as the database information like title, content and each file's file...
221
Atli
by: Atli | last post by:
You may be wondering why you would want to put your files “into” the database, rather than just onto the file-system. Well, most of the time, you wouldn’t. In situations where your PHP application...
1
pezholio
by: pezholio | last post by:
Hi, It seems that every time I put together a new script to upload a file I always have problems, here's the latest one: I've got a form with two file input fields, when I submit the form,...
6
ddtpmyra
by: ddtpmyra | last post by:
Problem I got this cool tool from 'Howtos' posted by ATLI, but I'm having trouble on posting or uploading files bigger than 15000KB although I create the table field into a 'LongBlob'. Is there any...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.