473,387 Members | 3,801 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,387 software developers and data experts.

How do I setup php script to return a browser page?

Don
I want the server-side php script to return a browser page that is essentially a copy of the
original client page that contained the <form> which referenced the php script in the first place.
However, the php script will need to change a couple html lines in that returned page. I sure could
you some help on how to go about this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #1
10 3068
Don
On Mon, 11 Oct 2004 10:07:20 -0700, Don <no@adr.com> wrote:
I want the server-side php script to return a browser page that is essentially a copy of the
original client page that contained the <form> which referenced the php script in the first place.
However, the php script will need to change a couple html lines in that returned page. I sure could
you some help on how to go about this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---


Guess what I really need to know is how should I construct the form's <input> tag, using a hidden
field, to pass the client page as an array. And, how should the server-side php script retrieve and
print it to the returned browser page? I'm still pretty new at html and php programming. Sure
would appreciate a little help with this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #2

"Don" <no@adr.com> wrote in message
news:8g********************************@4ax.com...
On Mon, 11 Oct 2004 10:07:20 -0700, Don <no@adr.com> wrote:
I want the server-side php script to return a browser page that is
essentially a copy of the
original client page that contained the <form> which referenced the php
script in the first place.
However, the php script will need to change a couple html lines in that
returned page. I sure could
you some help on how to go about this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet
News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000
Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---


Guess what I really need to know is how should I construct the form's
<input> tag, using a hidden
field, to pass the client page as an array. And, how should the
server-side php script retrieve and
print it to the returned browser page? I'm still pretty new at html and
php programming. Sure
would appreciate a little help with this.

Thanks in advance,
Don


Hi Don,
I'm not sure I have understood you, but here is a quick sample form.
Save the form to a file called 'TestForm.php' or it will not work correctly
(unless you also modify the post action field). The form just displays 2
fields to enter a forname and surname. A hidden field called 'action' is
used to tell the form to redisplay the post data.

So basically, when the form is submitted, the post data is used for the
value fields of the text boxes. This technique should be able to be easily
adapted to your needs. Note the 'addslashes' will protect your database from
abuse assuming the data will go into a database at some point. This is just
a quick and dirty sample, but should give you a general idea of what to do.

Martin

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Test Form</TITLE>
</HEAD>
<BODY>

<form method="post" action="TestForm.php" NAME="form1" >
<table WIDTH="100%" BORDER=0 CELLPADDING=0 CELLSPACING=0>

<?php

function AddTextField($Description, $Name, $Length, $value)
{
echo "<tr>";
echo '<td align="right" width="250">';

echo '<b>' . $Description . '&nbsp;</b></td>';

echo '<td align="left"><input type="text" class="formfield"
size="27" maxlength=' . $Length;
echo ' name="' . $Name . '" id="' . $Name . '" value="' . $value .
'"></td>';
echo "</tr>";
}

// 'action' will only be 'modify' after the submit button has
// been pressed for the first time
if ($_POST['action'] == 'modify')
{
AddTextField('First Name', 'Forname', 20, $_POST['Forname']);
AddTextField('Last Name', 'Surname', 20, $_POST['Surname']);
$Forname = addslashes($_POST['Forname']);
$Surname = addslashes($_POST['Surname']);

// validate and use data here
}
else
{
AddTextField('First Name', 'Forname', 20, '');
AddTextField('Last Name', 'Surname', 20, '');
}

?>

<tr>
<td align="center" width="600">
<br>
<input type="hidden" name="action" id="idName" value="modify">
<br>
<input type="submit" name="Submit" value="Submit" class="formfield"
border="0" WIDTH="79" HEIGHT="25">
<td>
<tr>
</table>
</form>
</body>
</html>
Jul 17 '05 #3
Don
On Mon, 11 Oct 2004 23:07:50 +0100, "Martin Cooper" <us********@martinc.me.uk> wrote:

"Don" <no@adr.com> wrote in message
news:8g********************************@4ax.com.. .
On Mon, 11 Oct 2004 10:07:20 -0700, Don <no@adr.com> wrote:
I want the server-side php script to return a browser page that is
essentially a copy of the
original client page that contained the <form> which referenced the php
script in the first place.
However, the php script will need to change a couple html lines in that
returned page. I sure could
you some help on how to go about this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet
News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000
Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---


Guess what I really need to know is how should I construct the form's
<input> tag, using a hidden
field, to pass the client page as an array. And, how should the
server-side php script retrieve and
print it to the returned browser page? I'm still pretty new at html and
php programming. Sure
would appreciate a little help with this.

Thanks in advance,
Don


Hi Don,
I'm not sure I have understood you, but here is a quick sample form.
Save the form to a file called 'TestForm.php' or it will not work correctly
(unless you also modify the post action field). The form just displays 2
fields to enter a forname and surname. A hidden field called 'action' is
used to tell the form to redisplay the post data.

So basically, when the form is submitted, the post data is used for the
value fields of the text boxes. This technique should be able to be easily
adapted to your needs. Note the 'addslashes' will protect your database from
abuse assuming the data will go into a database at some point. This is just
a quick and dirty sample, but should give you a general idea of what to do.

Martin

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Test Form</TITLE>
</HEAD>
<BODY>

<form method="post" action="TestForm.php" NAME="form1" >
<table WIDTH="100%" BORDER=0 CELLPADDING=0 CELLSPACING=0>

<?php

function AddTextField($Description, $Name, $Length, $value)
{
echo "<tr>";
echo '<td align="right" width="250">';

echo '<b>' . $Description . '&nbsp;</b></td>';

echo '<td align="left"><input type="text" class="formfield"
size="27" maxlength=' . $Length;
echo ' name="' . $Name . '" id="' . $Name . '" value="' . $value .
'"></td>';
echo "</tr>";
}

// 'action' will only be 'modify' after the submit button has
// been pressed for the first time
if ($_POST['action'] == 'modify')
{
AddTextField('First Name', 'Forname', 20, $_POST['Forname']);
AddTextField('Last Name', 'Surname', 20, $_POST['Surname']);
$Forname = addslashes($_POST['Forname']);
$Surname = addslashes($_POST['Surname']);

// validate and use data here
}
else
{
AddTextField('First Name', 'Forname', 20, '');
AddTextField('Last Name', 'Surname', 20, '');
}

?>

<tr>
<td align="center" width="600">
<br>
<input type="hidden" name="action" id="idName" value="modify">
<br>
<input type="submit" name="Submit" value="Submit" class="formfield"
border="0" WIDTH="79" HEIGHT="25">
<td>
<tr>
</table>
</form>
</body>
</html>

Thanks very much Martin. I really appreciate you taking the time to put together the code. I'm
starting to get a pretty fair handle on HTML and JS, but this one has really got me. I'll study
this and give it a try. I'll let you know how it goes.

Regards, Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #4
Don
On Mon, 11 Oct 2004 23:07:50 +0100, "Martin Cooper" <us********@martinc.me.uk> wrote:

"Don" <no@adr.com> wrote in message
news:8g********************************@4ax.com.. .
On Mon, 11 Oct 2004 10:07:20 -0700, Don <no@adr.com> wrote:
I want the server-side php script to return a browser page that is
essentially a copy of the
original client page that contained the <form> which referenced the php
script in the first place.
However, the php script will need to change a couple html lines in that
returned page. I sure could
you some help on how to go about this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet
News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000
Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---


Guess what I really need to know is how should I construct the form's
<input> tag, using a hidden
field, to pass the client page as an array. And, how should the
server-side php script retrieve and
print it to the returned browser page? I'm still pretty new at html and
php programming. Sure
would appreciate a little help with this.

Thanks in advance,
Don


Hi Don,
I'm not sure I have understood you, but here is a quick sample form.
Save the form to a file called 'TestForm.php' or it will not work correctly
(unless you also modify the post action field). The form just displays 2
fields to enter a forname and surname. A hidden field called 'action' is
used to tell the form to redisplay the post data.

So basically, when the form is submitted, the post data is used for the
value fields of the text boxes. This technique should be able to be easily
adapted to your needs. Note the 'addslashes' will protect your database from
abuse assuming the data will go into a database at some point. This is just
a quick and dirty sample, but should give you a general idea of what to do.

Martin

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Test Form</TITLE>
</HEAD>
<BODY>

<form method="post" action="TestForm.php" NAME="form1" >
<table WIDTH="100%" BORDER=0 CELLPADDING=0 CELLSPACING=0>

<?php

function AddTextField($Description, $Name, $Length, $value)
{
echo "<tr>";
echo '<td align="right" width="250">';

echo '<b>' . $Description . '&nbsp;</b></td>';

echo '<td align="left"><input type="text" class="formfield"
size="27" maxlength=' . $Length;
echo ' name="' . $Name . '" id="' . $Name . '" value="' . $value .
'"></td>';
echo "</tr>";
}

// 'action' will only be 'modify' after the submit button has
// been pressed for the first time
if ($_POST['action'] == 'modify')
{
AddTextField('First Name', 'Forname', 20, $_POST['Forname']);
AddTextField('Last Name', 'Surname', 20, $_POST['Surname']);
$Forname = addslashes($_POST['Forname']);
$Surname = addslashes($_POST['Surname']);

// validate and use data here
}
else
{
AddTextField('First Name', 'Forname', 20, '');
AddTextField('Last Name', 'Surname', 20, '');
}

?>

<tr>
<td align="center" width="600">
<br>
<input type="hidden" name="action" id="idName" value="modify">
<br>
<input type="submit" name="Submit" value="Submit" class="formfield"
border="0" WIDTH="79" HEIGHT="25">
<td>
<tr>
</table>
</form>
</body>
</html>


Martin,

I studied the script and think I understand how it works. However, the client-side page in my case
is dynamically built using JS, so it isn't as simple as storing the page on the server as you
suggest. I really need to submit the page's initial <form> to server A, along with all the page
content via an array, have server A process the form, and rebuild (via print) the client-side page
that came along, modify the embedded <form> to address server B. Then, when server A has finished
processing the initial <form> it will return the initial client-side page, with the modified <form>.
That modified <form> will have an onload event handler, so it will fire without client intervention.
All of this happens as a result of the client clicking one and only one submit button.

By the way, the initial <form> uploads one or more files to server A. And, the second <form> just
submits some data to server B. Server B will return an appropriate browser page.

I just don't know how to pass the client-side page to server A, via an <input type=hidden...> using
an array. And, I don't know how to retrieve it in the PHP script on the server.

What do you think?
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #5

<snip>

Martin,

I studied the script and think I understand how it works. However, the
client-side page in my case
is dynamically built using JS, so it isn't as simple as storing the page
on the server as you
suggest. I really need to submit the page's initial <form> to server A,
along with all the page
content via an array, have server A process the form, and rebuild (via
print) the client-side page
that came along, modify the embedded <form> to address server B. Then,
when server A has finished
processing the initial <form> it will return the initial client-side page,
with the modified <form>.
That modified <form> will have an onload event handler, so it will fire
without client intervention.
All of this happens as a result of the client clicking one and only one
submit button.

By the way, the initial <form> uploads one or more files to server A.
And, the second <form> just
submits some data to server B. Server B will return an appropriate
browser page.

I just don't know how to pass the client-side page to server A, via an
<input type=hidden...> using
an array. And, I don't know how to retrieve it in the PHP script on the
server.

What do you think?
Don


Hi Don,
I can't think of a way to submit the complete page, but you could write
an event handler for the 'onsubmit' event in javascript that would parse the
page, gather the information you required from the page, and create a series
of post fields each containing a peice of the information.

Sorry, I'm not familiar enough with javascript to tell you exactly how, but
once you have gathered the info, embed each peice of data in a hidden field
called 'arrayXXXXX' where XXXXX is an incrimenting number. This would
arrive on the server in the _POST array. You can then parse the post array
with a foreach loop such as :-

foreach ($_POST as $key=>$value)
{
if (preg_match ("/^array([0-9\-]+)/i", $key, $matches))
{
$array[$matches[1]] = $value;
}
}

// process data here

So after this script has run, the various post elements (each having a
unique number generated by javascript) would be accessable via a standard
PHP array containing the data gathered from the webpage by the javascript.

The javascript would have to recursively parse the DOM, gathering the needed
information as it went from the document.

In the DOM, as you probably know, each HTML tag is accessable, so by
recusring through the entire page, you can build an array for the post that
contains a copy of every part of the page. By submitting these with an
incrimenting number, the foreach loop above could be used to reconstruct the
page. For the javascript side, take a look at
http://www.webreference.com/programm.../chap17/6.html
for a recursive function that can traverse the entire document.

This may not be the only way, but I can't think of an easier way right now.

Martin
Jul 17 '05 #6
red
Don wrote:
On Mon, 11 Oct 2004 10:07:20 -0700, Don <no@adr.com> wrote:

I want the server-side php script to return a browser page that is essentially a copy of the
original client page that contained the <form> which referenced the php script in the first place.
However, the php script will need to change a couple html lines in that returned page. I sure could
you some help on how to go about this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---

Guess what I really need to know is how should I construct the form's <input> tag, using a hidden
field, to pass the client page as an array. And, how should the server-side php script retrieve and
print it to the returned browser page? I'm still pretty new at html and php programming. Sure
would appreciate a little help with this.

Thanks in advance,
Don

Maybe I don't understand the question, but I don't see why you need a
hidden feild for this or why you need to pass the entire page at all.
Instead of passing the page, just make the part you want to use again
appear again after the changes are submitted. Save this as test.php:
<?
if($_POST[submit]){
$value =$_POST[value];
}
else $value="This is the value which will appear on the original
page but which will be changed after the form is submitted";

?>
<form action="/test/test.php" method="post" enctype="multipart/form-data">
<input type="text" name="value"><input type="submit" name="submit"
value="submit">
</form>
This part of the page will appear before and after the page is changed<br>
<?
echo $value;
?>
Jul 17 '05 #7
red
red wrote:
Don wrote:
On Mon, 11 Oct 2004 10:07:20 -0700, Don <no@adr.com> wrote:

I want the server-side php script to return a browser page that is
essentially a copy of the
original client page that contained the <form> which referenced the
php script in the first place.
However, the php script will need to change a couple html lines in
that returned page. I sure could
you some help on how to go about this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet
News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World!
>100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---


Guess what I really need to know is how should I construct the form's
<input> tag, using a hidden
field, to pass the client page as an array. And, how should the
server-side php script retrieve and
print it to the returned browser page? I'm still pretty new at html
and php programming. Sure
would appreciate a little help with this.

Thanks in advance,
Don


Maybe I don't understand the question, but I don't see why you need a
hidden feild for this or why you need to pass the entire page at all.
Instead of passing the page, just make the part you want to use again
appear again after the changes are submitted. Save this as test.php:

actually I meant to post this simpler version:
<form action="/test/test.php" method="post" enctype="multipart/form-data">
<input type="text" name="value"><input type="submit" name="submit"
value="submit">
</form>
This part of the page will appear before and after the page is changed<br>
<?
if($_POST[submit]){
echo $_POST[value];
}
else echo "This is the value which will appear on the original page
but which will be changed on the second page";

?>
Jul 17 '05 #8
Don
On Tue, 12 Oct 2004 14:18:43 GMT, red <gr*****@reenie.org> wrote:
red wrote:
Don wrote:
On Mon, 11 Oct 2004 10:07:20 -0700, Don <no@adr.com> wrote:
I want the server-side php script to return a browser page that is
essentially a copy of the
original client page that contained the <form> which referenced the
php script in the first place.
However, the php script will need to change a couple html lines in
that returned page. I sure could
you some help on how to go about this.

Thanks in advance,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet
News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World!
>100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---

Guess what I really need to know is how should I construct the form's
<input> tag, using a hidden
field, to pass the client page as an array. And, how should the
server-side php script retrieve and
print it to the returned browser page? I'm still pretty new at html
and php programming. Sure
would appreciate a little help with this.

Thanks in advance,
Don


Maybe I don't understand the question, but I don't see why you need a
hidden feild for this or why you need to pass the entire page at all.
Instead of passing the page, just make the part you want to use again
appear again after the changes are submitted. Save this as test.php:

actually I meant to post this simpler version:
<form action="/test/test.php" method="post" enctype="multipart/form-data">
<input type="text" name="value"><input type="submit" name="submit"
value="submit">
</form>
This part of the page will appear before and after the page is changed<br>
<?
if($_POST[submit]){
echo $_POST[value];
}
else echo "This is the value which will appear on the original page
but which will be changed on the second page";

?>


Thanks very much. I'll give it a try. Appreciate your help.
Regards, Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #9
red
Don wrote:


Thanks very much. I'll give it a try. Appreciate your help.
Regards, Don

Just so you know, you don't need the enctype="multipart/form-data" I
accidently left in the form in my last post.Here it is again:

<form action="/test/test.php" method="post">
<input type="text" name="value">
<input type="submit" name="submit" value="submit">
</form>
This part of the page will appear before and after the page is changed<br>
<?
if($_POST[submit]){
echo $_POST[value];
}
else echo "This is the value which will appear on the original page
but which will be changed on the second page";

?>
Jul 17 '05 #10
Don
On Tue, 12 Oct 2004 15:19:27 GMT, red <gr*****@reenie.org> wrote:
Don wrote:


Thanks very much. I'll give it a try. Appreciate your help.
Regards, Don

Just so you know, you don't need the enctype="multipart/form-data" I
accidently left in the form in my last post.Here it is again:

<form action="/test/test.php" method="post">
<input type="text" name="value">
<input type="submit" name="submit" value="submit">
</form>
This part of the page will appear before and after the page is changed<br>
<?
if($_POST[submit]){
echo $_POST[value];
}
else echo "This is the value which will appear on the original page
but which will be changed on the second page";

?>

Thank you!
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #11

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

Similar topics

8
by: Johnny Knoxville | last post by:
I've added a favicon to my site (http://lazyape.filetap.com/) which works fine if you add the site to favourites the normal way, but I have some JavaScript code on a couple of pages with a link,...
10
by: Karl Burrows | last post by:
Here's a simple script I have pulled from various sources and wondered if there was a way to improve it. First, if the type the wrong password, I would like to redirect them to another login page...
8
by: Jakej | last post by:
I've been using a javascript in an html file for a banner slider, and it works as desired. But I'd like to use it on more than one page and it would be great if I could transfer the code to a .js...
7
by: cjl | last post by:
Hey all: I've searched the newsgroup, and googled, but I'm stuck. I want to be able to 'dynamically' add a .js file to a web page after the page has loaded, based on user interaction. For...
4
by: Russ | last post by:
I have a form page with a submit button. When the submit is successfull (good return from web service), I insert a script to put up a message box saying "Form submitted". That works fine, but...
8
by: pamelafluente | last post by:
I am beginning aspNet, I know well win apps. Need a simple and schematic code example to start work. This is what I need to accomplish: ---------------------- Given button and a TextBox on a...
10
by: See_Red_Run | last post by:
Hi, I am trying to figure out how to get started with PHP/MySQL. Everything I've read so far says to start with PHP first. I was expecting something like Visual Basic Express or some other type...
5
by: YaoBao | last post by:
Is any ColdFusion script I can put on my webpage that will create a search bar so people can type keywords to match it on the current page in my website? It will be exactly like the finder search bar...
1
KevinADC
by: KevinADC | last post by:
Note: You may skip to the end of the article if all you want is the perl code. Introduction Many websites have a form or a link you can use to download a file. You click a form button or click...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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...

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.