473,396 Members | 2,093 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,396 software developers and data experts.

passing array to top page in frameset not working?

Hello,

The following

<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

passes the value of the variable $groups from a php file to the top
page in a frameset but how do I change it if $groups is an array?

Cheers,

Geoff
Aug 15 '08 #1
25 2049
Geoff Cox wrote:
Hello,

The following

<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

passes the value of the variable $groups from a php file to the top
page in a frameset but how do I change it if $groups is an array?
Why would you wanna do a thing like that ?
It's pretty bad design if you dont know the type of your variable.

But here goes

if(is_array($groups)){ ?>

// do some stuff with yourarray

<?php } else { ?>

<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

<?php } ?>
Aug 15 '08 #2
Geoff Cox wrote:
Hello,

The following

<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

passes the value of the variable $groups from a php file to the top
page in a frameset but how do I change it if $groups is an array?

Cheers,

Geoff
You need to put the elements of the array in the frameset, i.e.

foreach ($groups as $key=>$value) {
echo "<input type='hidden' name='group[$key]' value='$value'>";

But I would recommend you check into using the $_SESSION variable.

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

Aug 15 '08 #3
On Fri, 15 Aug 2008 07:36:29 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>Geoff Cox wrote:
>Hello,

The following

<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

passes the value of the variable $groups from a php file to the top
page in a frameset but how do I change it if $groups is an array?

Cheers,

Geoff

You need to put the elements of the array in the frameset, i.e.

foreach ($groups as $key=>$value) {
echo "<input type='hidden' name='group[$key]' value='$value'>";

But I would recommend you check into using the $_SESSION variable.
Jerry,

I have just got serialize and unserialize working - that approach seem
OK to you?

Does $_SESSION require users to allow cookies?

Cheers

Geoff
Aug 15 '08 #4
On Fri, 15 Aug 2008 13:25:16 +0200, Floortje <fl******@dontlike.mail>
wrote:
>Geoff Cox wrote:
>Hello,

The following

<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

passes the value of the variable $groups from a php file to the top
page in a frameset but how do I change it if $groups is an array?

Why would you wanna do a thing like that ?
It's pretty bad design if you dont know the type of your variable.
I did know that I wanted to use an array but was just moving 1 step at
a time!
>But here goes

if(is_array($groups)){ ?>

// do some stuff with yourarray

<?php } else { ?>

<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

<?php } ?>
thanks for the info.

Cheers

Geoff
Aug 15 '08 #5
Geoff Cox wrote:
On Fri, 15 Aug 2008 07:36:29 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>Geoff Cox wrote:
>>Hello,

The following

<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

passes the value of the variable $groups from a php file to the top
page in a frameset but how do I change it if $groups is an array?

Cheers,

Geoff
You need to put the elements of the array in the frameset, i.e.

foreach ($groups as $key=>$value) {
echo "<input type='hidden' name='group[$key]' value='$value'>";

But I would recommend you check into using the $_SESSION variable.

Jerry,

I have just got serialize and unserialize working - that approach seem
OK to you?

Does $_SESSION require users to allow cookies?

Cheers

Geoff
You can serialize it - I just don't like to do it with printable data.
It exposes internal program information to the user and is a potential
entry for hackers.

As for sessions requiring cookies - it depends on the settings in your
php.ini file. PHP typically uses cookies, but if they are disabled PHP
can be told to pass the session id in the url.

However - anyone running with cookies disabled is going to have major
problems anyway. A huge number of sites require them for different
reasons.

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

Aug 15 '08 #6
..oO(Geoff Cox)
>Does $_SESSION require users to allow cookies?
It's the recommended way for storing the session ID. You can also append
it to all URLs (PHP can do this automatically), but it's less secure.

Also note that sessions may cause delays on a frame site. See the manual
for more details about this issue.

http://www.php.net/session_write_close

Micha
Aug 15 '08 #7
On Fri, 15 Aug 2008 08:31:18 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>I have just got serialize and unserialize working - that approach seem
OK to you?

Does $_SESSION require users to allow cookies?

Cheers

Geoff

You can serialize it - I just don't like to do it with printable data.
It exposes internal program information to the user and is a potential
entry for hackers.

As for sessions requiring cookies - it depends on the settings in your
php.ini file. PHP typically uses cookies, but if they are disabled PHP
can be told to pass the session id in the url.

However - anyone running with cookies disabled is going to have major
problems anyway. A huge number of sites require them for different
reasons.
Jerry,

Re the entry for hackers problem - users will have paid to subscribe
and will then have been given a user name and password. The serialize
function is used after they have entered the password protected folder
(htaccess etc) so shouldn't be a problem?

Cheers

Geoff
Aug 15 '08 #8
Geoff Cox wrote:
On Fri, 15 Aug 2008 08:31:18 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>>I have just got serialize and unserialize working - that approach seem
OK to you?

Does $_SESSION require users to allow cookies?

Cheers

Geoff
You can serialize it - I just don't like to do it with printable data.
It exposes internal program information to the user and is a potential
entry for hackers.

As for sessions requiring cookies - it depends on the settings in your
php.ini file. PHP typically uses cookies, but if they are disabled PHP
can be told to pass the session id in the url.

However - anyone running with cookies disabled is going to have major
problems anyway. A huge number of sites require them for different
reasons.

Jerry,

Re the entry for hackers problem - users will have paid to subscribe
and will then have been given a user name and password. The serialize
function is used after they have entered the password protected folder
(htaccess etc) so shouldn't be a problem?

Cheers

Geoff
True - under normal circumstances. But that doesn't stop a hacker from
creating his own copy of a page with bad information and posting it to
your site. It can wreck havoc on your site.

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

Aug 15 '08 #9
Geoff Cox wrote:
<frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

passes the value of the variable $groups from a php file to the top
page in a frameset but how do I change it if $groups is an array?
THe prefered way is to use Sessions. But if you will, you can use PHPs
buildin function http_build_query =http://de.php.net/http_build_query

So long, Ulf
Aug 15 '08 #10
On Fri, 15 Aug 2008 18:34:49 +0200, Ulf Kadner <dr******@gmx.net>
wrote:
>Geoff Cox wrote:
><frame src="topbar-frameset.php?newVar=<?php echo $groups; ?>">

passes the value of the variable $groups from a php file to the top
page in a frameset but how do I change it if $groups is an array?

THe prefered way is to use Sessions. But if you will, you can use PHPs
buildin function http_build_query =http://de.php.net/http_build_query

So long, Ulf
Thanks Ulf but looks as if http_build_query is for php 5 and my
hosting people use version 4.

Cheers

Geoff
Aug 15 '08 #11
On Fri, 15 Aug 2008 11:49:08 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>Re the entry for hackers problem - users will have paid to subscribe
and will then have been given a user name and password. The serialize
function is used after they have entered the password protected folder
(htaccess etc) so shouldn't be a problem?

Cheers

Geoff

True - under normal circumstances. But that doesn't stop a hacker from
creating his own copy of a page with bad information and posting it to
your site. It can wreck havoc on your site.
How does a hacker post to my site? ftp access requires user name and
password. What am I missing?!

Cheers

Geoff
Aug 15 '08 #12
On Fri, 15 Aug 2008 17:13:09 +0200, Michael Fesser <ne*****@gmx.de>
wrote:
>.oO(Geoff Cox)
>>Does $_SESSION require users to allow cookies?

It's the recommended way for storing the session ID. You can also append
it to all URLs (PHP can do this automatically), but it's less secure.

Also note that sessions may cause delays on a frame site. See the manual
for more details about this issue.

http://www.php.net/session_write_close

Micha
that does seem to be a problem for me as I use lots of frames - the
left for the search term selection and the right for the results from
mysql....

I suppose I could use AJAX and not frames ...

Cheers

Geoff
Aug 15 '08 #13
..oO(Geoff Cox)
>Thanks Ulf but looks as if http_build_query is for php 5 and my
hosting people use version 4.
Any chance to change that? Personally I wouldn't pay a host that uses
outdated and unsupported(!) software. PHP 5 is available since years,
there's absolutely no excuse for not supporting it.

Micha
Aug 15 '08 #14
On Sat, 16 Aug 2008 01:40:32 +0200, Michael Fesser <ne*****@gmx.de>
wrote:
>.oO(Geoff Cox)
>>Thanks Ulf but looks as if http_build_query is for php 5 and my
hosting people use version 4.

Any chance to change that? Personally I wouldn't pay a host that uses
outdated and unsupported(!) software. PHP 5 is available since years,
there's absolutely no excuse for not supporting it.

Micha

I agree it's a poor state of affairs but if I move to a newer server
with php5 they remove my ability to have SSH connection! The hosting
company is Webfusion by the way.

Cheers

Geoff
Aug 16 '08 #15
Geoff Cox wrote:
On Fri, 15 Aug 2008 11:49:08 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>>Re the entry for hackers problem - users will have paid to subscribe
and will then have been given a user name and password. The serialize
function is used after they have entered the password protected folder
(htaccess etc) so shouldn't be a problem?

Cheers

Geoff
True - under normal circumstances. But that doesn't stop a hacker from
creating his own copy of a page with bad information and posting it to
your site. It can wreck havoc on your site.

How does a hacker post to my site? ftp access requires user name and
password. What am I missing?!

Cheers

Geoff
They don't need ftp access. They can create their own page and use it
to post garbage to your site, for instance. That's why you NEVER trust
ANYTHING coming from the user - including an array you serialize and
place in a hidden field.

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

Aug 16 '08 #16
Geoff Cox wrote:
On Sat, 16 Aug 2008 01:40:32 +0200, Michael Fesser <ne*****@gmx.de>
wrote:
>.oO(Geoff Cox)
>>Thanks Ulf but looks as if http_build_query is for php 5 and my
hosting people use version 4.
Any chance to change that? Personally I wouldn't pay a host that uses
outdated and unsupported(!) software. PHP 5 is available since years,
there's absolutely no excuse for not supporting it.

Micha


I agree it's a poor state of affairs but if I move to a newer server
with php5 they remove my ability to have SSH connection! The hosting
company is Webfusion by the way.

Cheers

Geoff
Sounds like time to get another hosting company. There are plenty of
them out there.

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

Aug 16 '08 #17
On Sat, 16 Aug 2008 07:45:10 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:

>How does a hacker post to my site? ftp access requires user name and
password. What am I missing?!
p
Cheers

Geoff

They don't need ftp access. They can create their own page and use it
to post garbage to your site, for instance. That's why you NEVER trust
ANYTHING coming from the user - including an array you serialize and
place in a hidden field.
Jerry,

What happens is as follows - is the array still a potential problem?

1. the user is asked to logon (based on htaccess) and only subscribed
users will get access.

2. The $_SERVER['REMOTE_USER'] value is used for a search of mysql
database and the data from this search is serialized.

This should be OK? (assuming the subscriber is not a hacker too!)

Is the sessions approach safer though?

Cheers

GeoffT
Aug 17 '08 #18
Geoff Cox wrote:
On Sat, 16 Aug 2008 07:45:10 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:

>>How does a hacker post to my site? ftp access requires user name and
password. What am I missing?!
p
Cheers

Geoff
They don't need ftp access. They can create their own page and use it
to post garbage to your site, for instance. That's why you NEVER trust
ANYTHING coming from the user - including an array you serialize and
place in a hidden field.

Jerry,

What happens is as follows - is the array still a potential problem?

1. the user is asked to logon (based on htaccess) and only subscribed
users will get access.

2. The $_SERVER['REMOTE_USER'] value is used for a search of mysql
database and the data from this search is serialized.

This should be OK? (assuming the subscriber is not a hacker too!)

Is the sessions approach safer though?

Cheers

GeoffT
No. You are under the assumption that the user must go through the
previous steps to post information to your page. This is incorrect. I
can create a page on my computer right here on my local webserver, and
have it post bad information to your page. In fact, I don't even need a
web browser or server - I can do it all in a few lines of PHP code.

And in that page I can put anything I want.

It's why you ALWAYS VALIDATE ALL INFORMATION FROM THE USER.

And BTW - who is to say the subscriber is not a hacker?

Sending any serialized data to the user can be a security problem
because it's so hard to validate. Store it in the $_SESSION. That's
what it's there for, and it's safe.

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

Aug 17 '08 #19
On Sun, 17 Aug 2008 11:06:55 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>Geoff Cox wrote:
>On Sat, 16 Aug 2008 07:45:10 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:

>>>How does a hacker post to my site? ftp access requires user name and
password. What am I missing?!
p
Cheers

Geoff

They don't need ftp access. They can create their own page and use it
to post garbage to your site, for instance. That's why you NEVER trust
ANYTHING coming from the user - including an array you serialize and
place in a hidden field.

Jerry,

What happens is as follows - is the array still a potential problem?

1. the user is asked to logon (based on htaccess) and only subscribed
users will get access.

2. The $_SERVER['REMOTE_USER'] value is used for a search of mysql
database and the data from this search is serialized.

This should be OK? (assuming the subscriber is not a hacker too!)

Is the sessions approach safer though?

Cheers

GeoffT

No. You are under the assumption that the user must go through the
previous steps to post information to your page. This is incorrect. I
can create a page on my computer right here on my local webserver, and
have it post bad information to your page. In fact, I don't even need a
web browser or server - I can do it all in a few lines of PHP code.

And in that page I can put anything I want.

It's why you ALWAYS VALIDATE ALL INFORMATION FROM THE USER.

And BTW - who is to say the subscriber is not a hacker?

Sending any serialized data to the user can be a security problem
because it's so hard to validate. Store it in the $_SESSION. That's
what it's there for, and it's safe.
OK! 'will go for the $_SESSION way.

Thanks

Geoff
Aug 18 '08 #20
On Sun, 17 Aug 2008 11:06:55 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:

>No. You are under the assumption that the user must go through the
previous steps to post information to your page. This is incorrect. I
can create a page on my computer right here on my local webserver, and
have it post bad information to your page. In fact, I don't even need a
web browser or server - I can do it all in a few lines of PHP code.

And in that page I can put anything I want.

It's why you ALWAYS VALIDATE ALL INFORMATION FROM THE USER.

And BTW - who is to say the subscriber is not a hacker?

Sending any serialized data to the user can be a security problem
because it's so hard to validate. Store it in the $_SESSION. That's
what it's there for, and it's safe.
Jerry,

I'm having problems using $_SESSION ... is it possible to get the
$_SESSION value passed from a php file to the top page of a frameset
via the frameset file?

If yes, I guess, how?!

Cheers

Geoff
Aug 18 '08 #21
Geoff Cox wrote:
On Sun, 17 Aug 2008 11:06:55 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:

>No. You are under the assumption that the user must go through the
previous steps to post information to your page. This is incorrect. I
can create a page on my computer right here on my local webserver, and
have it post bad information to your page. In fact, I don't even need a
web browser or server - I can do it all in a few lines of PHP code.

And in that page I can put anything I want.

It's why you ALWAYS VALIDATE ALL INFORMATION FROM THE USER.

And BTW - who is to say the subscriber is not a hacker?

Sending any serialized data to the user can be a security problem
because it's so hard to validate. Store it in the $_SESSION. That's
what it's there for, and it's safe.

Jerry,

I'm having problems using $_SESSION ... is it possible to get the
$_SESSION value passed from a php file to the top page of a frameset
via the frameset file?

If yes, I guess, how?!

Cheers

Geoff
Yes, PHP doesn't know anything about framesets - as far as it's
concerned, it's just another page.

You do need a session_start() call at the start of every page (before
ANY output) which uses session variables. But from there on you should
be able to access any of the session values.

The only problem you may have is that access to a particular session's
data is single threaded to protect the data. Only one page can have it
open at a time and others will have to wait. That doesn't affect normal
operations, but in a frameset where you're loading the contents of
multiple frames concurrently, some will have to wait for others to
finish. The problem should not be noticeable unless you're doing
something which takes a long time to process. If this happens, the
solution is to call close_session() as soon as you're through with the
session variables in your files. But as I said - you really don't need
to do this unless you're having problems.

BTW - this is not just PHP - AFAIK every server-side language handles
sessions similarly. But it's just another reason why frames are evil :-).

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

Aug 18 '08 #22
On Mon, 18 Aug 2008 10:55:10 +0200, Jensen Somers
<je****@see.sig.invalidwrote:
>Geoff Cox wrote:
>On Sun, 17 Aug 2008 11:06:55 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:

>>No. You are under the assumption that the user must go through the
previous steps to post information to your page. This is incorrect. I
can create a page on my computer right here on my local webserver, and
have it post bad information to your page. In fact, I don't even need a
web browser or server - I can do it all in a few lines of PHP code.

And in that page I can put anything I want.

It's why you ALWAYS VALIDATE ALL INFORMATION FROM THE USER.

And BTW - who is to say the subscriber is not a hacker?

Sending any serialized data to the user can be a security problem
because it's so hard to validate. Store it in the $_SESSION. That's
what it's there for, and it's safe.

Jerry,

I'm having problems using $_SESSION ... is it possible to get the
$_SESSION value passed from a php file to the top page of a frameset
via the frameset file?

If yes, I guess, how?!

Cheers

Geoff

Sessions should be globally for the user during his session (/visit) on
your website. Technically, your frames are just different pages so you
are able to set a session variable on one page and access it on another
page. The only thing you will need to do is to refresh the frameset page
when data has been inserted into the session.
Thanks Jensen - I will try the refresh ...

Cheers

Geoff
Aug 18 '08 #23
On Mon, 18 Aug 2008 06:49:11 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>I'm having problems using $_SESSION ... is it possible to get the
$_SESSION value passed from a php file to the top page of a frameset
via the frameset file?

If yes, I guess, how?!

Cheers

Geoff

Yes, PHP doesn't know anything about framesets - as far as it's
concerned, it's just another page.

You do need a session_start() call at the start of every page (before
ANY output) which uses session variables. But from there on you should
be able to access any of the session values.

The only problem you may have is that access to a particular session's
data is single threaded to protect the data. Only one page can have it
open at a time and others will have to wait. That doesn't affect normal
operations, but in a frameset where you're loading the contents of
multiple frames concurrently, some will have to wait for others to
finish. The problem should not be noticeable unless you're doing
something which takes a long time to process. If this happens, the
solution is to call close_session() as soon as you're through with the
session variables in your files. But as I said - you really don't need
to do this unless you're having problems.

BTW - this is not just PHP - AFAIK every server-side language handles
sessions similarly. But it's just another reason why frames are evil :-).
Jerry,

I know frames are not ideal but I have lots of pages using them so
that a search started in the left hand page has its results visible in
the right hand page.

I suppose I could remove the frames and use AJAX? PHP is good in that
a user might disable Javascript but not many seem to do that. Any
other suggestions?

Cheers

Geoff
Aug 18 '08 #24
Geoff Cox wrote:
On Mon, 18 Aug 2008 06:49:11 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>>I'm having problems using $_SESSION ... is it possible to get the
$_SESSION value passed from a php file to the top page of a frameset
via the frameset file?

If yes, I guess, how?!

Cheers

Geoff
Yes, PHP doesn't know anything about framesets - as far as it's
concerned, it's just another page.

You do need a session_start() call at the start of every page (before
ANY output) which uses session variables. But from there on you should
be able to access any of the session values.

The only problem you may have is that access to a particular session's
data is single threaded to protect the data. Only one page can have it
open at a time and others will have to wait. That doesn't affect normal
operations, but in a frameset where you're loading the contents of
multiple frames concurrently, some will have to wait for others to
finish. The problem should not be noticeable unless you're doing
something which takes a long time to process. If this happens, the
solution is to call close_session() as soon as you're through with the
session variables in your files. But as I said - you really don't need
to do this unless you're having problems.

BTW - this is not just PHP - AFAIK every server-side language handles
sessions similarly. But it's just another reason why frames are evil :-).

Jerry,

I know frames are not ideal but I have lots of pages using them so
that a search started in the left hand page has its results visible in
the right hand page.

I suppose I could remove the frames and use AJAX? PHP is good in that
a user might disable Javascript but not many seem to do that. Any
other suggestions?

Cheers

Geoff
CSS will allow you to have left and right sides to your page. You could
use AJAX, but most of the time my left frames don't have much on them
anyway - so I just refresh the entire page. A few hundred bytes is
nothing. Even a small image is bigger than that.

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

Aug 18 '08 #25
On Mon, 18 Aug 2008 10:11:57 -0400, Jerry Stuckle
<js*******@attglobal.netwrote:
>CSS will allow you to have left and right sides to your page. You could
use AJAX, but most of the time my left frames don't have much on them
anyway - so I just refresh the entire page. A few hundred bytes is
nothing. Even a small image is bigger than that.

Jerry - 'have now got the $_SESSION code working!

Thanks for all your help.

Cheers,

Geoff
Aug 18 '08 #26

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

Similar topics

8
by: Hans | last post by:
Hi There, I have a page that has links with some variables and I need to open the results set in a frameset. I have tried doing this in various different ways, but still cannot get the variable...
0
by: Jim Mitchell | last post by:
I have a login screen that validates username and password returning the ID in a table of the user logging in. I then use server.transfer to split into two screens as shown below. I would like to...
11
by: Dthmtlgod | last post by:
I am having a little difficulty in passing a value from a page to another page. I am going to provide excerpts from the code. I think I am close. This is from Page1.ASP <% Set Conn =...
7
by: Scott | last post by:
I need help to modify the code below to pass url variables from a framset. The click to run this will be in the mainFrame. This script works well in a non-frame page. Grabs the current url...
6
by: KKramsch | last post by:
OK, here's the scenario: I have a CGI script that generates a page with frames (BTW, I'm not crazy about frames, but in this case the decision to use them is out of my hands). In a typical...
1
by: | last post by:
Hi, 1st, I did a search and could not find any info on this, the Google results were good, but I'm still have issues...So any help will be great. I have a frame page, which contains 3 frames...
1
by: news-server.maine.rr.com | last post by:
Hi, In a nutshell, how to pass query string parameters to a frameset page and extract them using Request and then pass them to a frame src ? I have the following situation, and this may be a...
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: 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...
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
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.