473,320 Members | 1,900 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,320 software developers and data experts.

Can't read $_SESSION variables set by previous request, AJAX

My page loads, and calls an init() function that returns content to a
div on the page, as well as setting a $_SESSION variable. The content
it returns includes a link that calls the same variable, but I get an
error that says the index isn't defined.

The second two calls are AJAX-generated. The second call immediately
echos the $_SESSION variable back after it sets it, and it sets it
properly. But the subsequent request doesn't see it.

I can't figure this one out, and this sort of function is vital to the
site I'm building.

Things I've already done:

Put session_start() in the functions that get called after the initial
pageload. Just generates warnings that a session has already been
started (by the original pageload).

Checked to make sure the same session is being used by all requests,
and it is (according to session_id).

Any help is appreciated.

Feb 18 '07 #1
15 5908
Evil Otto wrote:
My page loads, and calls an init() function that returns content to a
div on the page, as well as setting a $_SESSION variable. The content
it returns includes a link that calls the same variable, but I get an
error that says the index isn't defined.

The second two calls are AJAX-generated. The second call immediately
echos the $_SESSION variable back after it sets it, and it sets it
properly. But the subsequent request doesn't see it.

I can't figure this one out, and this sort of function is vital to the
site I'm building.

Things I've already done:

Put session_start() in the functions that get called after the initial
pageload. Just generates warnings that a session has already been
started (by the original pageload).

Checked to make sure the same session is being used by all requests,
and it is (according to session_id).

Any help is appreciated.
session_start() must be called before ANY OUTPUT - including whitespace,
DOCTYPE statement, <head>, etc. 99% of the time people ask about
session problems here, they have already sent output before the call to
session_start() is made, but don't have error reporting enabled.

As the very first lines in the page you're loading, try the following:

<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>

No whitespace or anything else before it.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Feb 18 '07 #2
Evil Otto wrote:
Put session_start() in the functions that get called after the initial
pageload. Just generates warnings that a session has already been
started (by the original pageload).
You are supposed to use one session_start() per script, say your AJAX will
call the getnewcars.php to get a result, then you have session_start() first
in that script, and thats all, nothing in the functions that are called from
that script.

--

//Aho
Feb 18 '07 #3
J.O. Aho wrote:
Evil Otto wrote:
>Put session_start() in the functions that get called after the initial
pageload. Just generates warnings that a session has already been
started (by the original pageload).

You are supposed to use one session_start() per script, say your AJAX
will call the getnewcars.php to get a result, then you have
session_start() first in that script, and thats all, nothing in the
functions that are called from that script.
You can put session_start() after other output if you use ob_start to
buffer output.
Feb 18 '07 #4
turnitup wrote:
J.O. Aho wrote:
>Evil Otto wrote:
>>Put session_start() in the functions that get called after the initial
pageload. Just generates warnings that a session has already been
started (by the original pageload).

You are supposed to use one session_start() per script, say your AJAX
will call the getnewcars.php to get a result, then you have
session_start() first in that script, and thats all, nothing in the
functions that are called from that script.

You can put session_start() after other output if you use ob_start to
buffer output.
Even if using buffering, it's a good thing to write it properly anyway.

--

//Aho
Feb 18 '07 #5
There's no output going to the browser before session_start(). The
top of my script looks like this:

--quote

<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>

<?php
/* Should only be debugging from one machine
* Should plan on making this a config variable
*/

if ($_SERVER['REMOTE_ADDR'] == '192.168.1.201')
{
$debug = 1;
}
$html='';

require_once('includes.php');
session_start();

--end quote

After that, there is content that is put into a variable and then run
through a filter before it gets echoed to the browser. There's an
onLoad="" call in the body tag that trips off another request, which
generates content that includes a link, as well as setting a $_SESSION
variable in the process. The problem is that it doesn't appear to
"write" the variable out to the session storage, because subsequent
requests can't see it.

On Feb 17, 10:23 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
My page loads, and calls an init() function that returns content to a
div on the page, as well as setting a $_SESSION variable. The content
it returns includes a link that calls the same variable, but I get an
error that says the index isn't defined.
The second two calls are AJAX-generated. The second call immediately
echos the $_SESSION variable back after it sets it, and it sets it
properly. But the subsequent request doesn't see it.
I can't figure this one out, and this sort of function is vital to the
site I'm building.
Things I've already done:
Put session_start() in the functions that get called after the initial
pageload. Just generates warnings that a session has already been
started (by the original pageload).
Checked to make sure the same session is being used by all requests,
and it is (according to session_id).
Any help is appreciated.

session_start() must be called before ANY OUTPUT - including whitespace,
DOCTYPE statement, <head>, etc. 99% of the time people ask about
session problems here, they have already sent output before the call to
session_start() is made, but don't have error reporting enabled.

As the very first lines in the page you're loading, try the following:

<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>

No whitespace or anything else before it.

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

Feb 18 '07 #6
Evil Otto kirjoitti:
There's no output going to the browser before session_start(). The
top of my script looks like this:

--quote

<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>
Output starts here cos you have a gap between two php tags. It's the
whitespace effect.
<?php

--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
sp**@outolempi.net | Gedoon-S @ IRCnet | rot13(xv***@bhgbyrzcv.arg)
Feb 18 '07 #7
I removed the ?and <?php tags from where you saw the whitespace, so
there's no extraneous whitespace. Had no effect on the problem I'm
seeing; the third request still cannot see changes to the $_SESSION
variable made by the second.

On Feb 18, 3:24 pm, Kimmo Laine <s...@outolempi.netwrote:
Evil Otto kirjoitti:
There's no output going to the browser before session_start(). The
top of my script looks like this:
--quote
<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>

Output starts here cos you have a gap between two php tags. It's the
whitespace effect.
<?php
>

--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)

Feb 18 '07 #8
Evil Otto wrote:
I removed the ?and <?php tags from where you saw the whitespace, so
there's no extraneous whitespace. Had no effect on the problem I'm
seeing; the third request still cannot see changes to the $_SESSION
variable made by the second.

On Feb 18, 3:24 pm, Kimmo Laine <s...@outolempi.netwrote:
>Evil Otto kirjoitti:
>>There's no output going to the browser before session_start(). The
top of my script looks like this:
--quote
<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>
Output starts here cos you have a gap between two php tags. It's the
whitespace effect.
>><?php

--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)

And can you be sure that *NOTHING* in your include.php file generates
output - including leading or trailing blanks, newline characters, etc.?

What do you get for error messages?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Feb 19 '07 #9
turnitup wrote:
J.O. Aho wrote:
>Evil Otto wrote:
>>Put session_start() in the functions that get called after the initial
pageload. Just generates warnings that a session has already been
started (by the original pageload).

You are supposed to use one session_start() per script, say your AJAX
will call the getnewcars.php to get a result, then you have
session_start() first in that script, and thats all, nothing in the
functions that are called from that script.

You can put session_start() after other output if you use ob_start to
buffer output.
Output buffering just hides the real problem - it doesn't solve it.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Feb 19 '07 #10
The only error i get is an undefined index message when the third
request tries to access the $_SESSION variable.

On Feb 18, 8:37 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
I removed the ?and <?php tags from where you saw the whitespace, so
there's no extraneous whitespace. Had no effect on the problem I'm
seeing; the third request still cannot see changes to the $_SESSION
variable made by the second.
On Feb 18, 3:24 pm, Kimmo Laine <s...@outolempi.netwrote:
Evil Otto kirjoitti:
>There's no output going to the browser before session_start(). The
top of my script looks like this:
--quote
<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>
Output starts here cos you have a gap between two php tags. It's the
whitespace effect.
><?php
--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)

And can you be sure that *NOTHING* in your include.php file generates
output - including leading or trailing blanks, newline characters, etc.?

What do you get for error messages?

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

Feb 19 '07 #11
On Feb 18, 8:37 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
I removed the ?and <?php tags from where you saw the whitespace, so
there's no extraneous whitespace. Had no effect on the problem I'm
seeing; the third request still cannot see changes to the $_SESSION
variable made by the second.
On Feb 18, 3:24 pm, Kimmo Laine <s...@outolempi.netwrote:
Evil Otto kirjoitti:
>There's no output going to the browser before session_start(). The
top of my script looks like this:
--quote
<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>
Output starts here cos you have a gap between two php tags. It's the
whitespace effect.
><?php
--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
Positive.
s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)

And can you be sure that *NOTHING* in your include.php file generates
output - including leading or trailing blanks, newline characters, etc.?

What do you get for error messages?

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

Feb 19 '07 #12
Evil Otto wrote:
The only error i get is an undefined index message when the third
request tries to access the $_SESSION variable.

On Feb 18, 8:37 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Evil Otto wrote:
>>I removed the ?and <?php tags from where you saw the whitespace, so
there's no extraneous whitespace. Had no effect on the problem I'm
seeing; the third request still cannot see changes to the $_SESSION
variable made by the second.
On Feb 18, 3:24 pm, Kimmo Laine <s...@outolempi.netwrote:
Evil Otto kirjoitti:
There's no output going to the browser before session_start(). The
top of my script looks like this:
--quote
<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>
Output starts here cos you have a gap between two php tags. It's the
whitespace effect.
<?php
--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)
And can you be sure that *NOTHING* in your include.php file generates
output - including leading or trailing blanks, newline characters, etc.?

What do you get for error messages?

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

In that case there are only two options. Either the second page didn't
call session_start() before any output, or the third page didn't do it.

Sessions work. If the second page properly starts the session and sets
the session info, and the third page properly starts the session, it
does work.

I know this sounds blunt - and I'm really sorry, I don't mean to be
blunt about it. But sessions do work. If you have a case where the
second page sets a session variable and the third page can't read it,
one of two things is wrong:

1. The second page didn't actually set the $_SESSION value in the
session (possibly because session_start wasn't called early enough - but
there could be other reasons), or
2. The third page can't read the $_SESSION value. In this case if it
is set, about the only option you have is that session_start() wasn't
called soon enough.

So, if the third page (where the value is read) is correct, perhaps the
second page (where it is set) has a problem?

It's got to be one or the other.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Feb 19 '07 #13
session_start() is called exactly once, at the beginning of the main
script.

There are multiple requests, but there is ONE page.

I've tried putting session_start() at the beginning of the functions
that get called, but they throw "session has already been started"
errors.

On Feb 18, 9:40 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
The only error i get is an undefined index message when the third
request tries to access the $_SESSION variable.
On Feb 18, 8:37 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
I removed the ?and <?php tags from where you saw the whitespace, so
there's no extraneous whitespace. Had no effect on the problem I'm
seeing; the third request still cannot see changes to the $_SESSION
variable made by the second.
On Feb 18, 3:24 pm, Kimmo Laine <s...@outolempi.netwrote:
Evil Otto kirjoitti:
There's no output going to the browser before session_start(). The
top of my script looks like this:
--quote
<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
?>
Output starts here cos you have a gap between two php tags. It's the
whitespace effect.
<?php
--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)
And can you be sure that *NOTHING* in your include.php file generates
output - including leading or trailing blanks, newline characters, etc..?
What do you get for error messages?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================

In that case there are only two options. Either the second page didn't
call session_start() before any output, or the third page didn't do it.

Sessions work. If the second page properly starts the session and sets
the session info, and the third page properly starts the session, it
does work.

I know this sounds blunt - and I'm really sorry, I don't mean to be
blunt about it. But sessions do work. If you have a case where the
second page sets a session variable and the third page can't read it,
one of two things is wrong:

1. The second page didn't actually set the $_SESSION value in the
session (possibly because session_start wasn't called early enough - but
there could be other reasons), or
2. The third page can't read the $_SESSION value. In this case if it
is set, about the only option you have is that session_start() wasn't
called soon enough.

So, if the third page (where the value is read) is correct, perhaps the
second page (where it is set) has a problem?

It's got to be one or the other.

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

Feb 19 '07 #14
Evil Otto wrote:
session_start() is called exactly once, at the beginning of the main
script.

There are multiple requests, but there is ONE page.

I've tried putting session_start() at the beginning of the functions
that get called, but they throw "session has already been started"
errors.

On Feb 18, 9:40 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Evil Otto wrote:
>>The only error i get is an undefined index message when the third
request tries to access the $_SESSION variable.
On Feb 18, 8:37 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
I removed the ?and <?php tags from where you saw the whitespace, so
there's no extraneous whitespace. Had no effect on the problem I'm
seeing; the third request still cannot see changes to the $_SESSION
variable made by the second.
On Feb 18, 3:24 pm, Kimmo Laine <s...@outolempi.netwrote:
>Evil Otto kirjoitti:
>>There's no output going to the browser before session_start(). The
>>top of my script looks like this:
>>--quote
>><?php
>> error_reporting(E_ALL);
>> ini_set("display_errors","1");
>>?>
>Output starts here cos you have a gap between two php tags. It's the
>whitespace effect.
>><?php
>--
>"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
>s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)
And can you be sure that *NOTHING* in your include.php file generates
output - including leading or trailing blanks, newline characters, etc.?
What do you get for error messages?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
In that case there are only two options. Either the second page didn't
call session_start() before any output, or the third page didn't do it.

Sessions work. If the second page properly starts the session and sets
the session info, and the third page properly starts the session, it
does work.

I know this sounds blunt - and I'm really sorry, I don't mean to be
blunt about it. But sessions do work. If you have a case where the
second page sets a session variable and the third page can't read it,
one of two things is wrong:

1. The second page didn't actually set the $_SESSION value in the
session (possibly because session_start wasn't called early enough - but
there could be other reasons), or
2. The third page can't read the $_SESSION value. In this case if it
is set, about the only option you have is that session_start() wasn't
called soon enough.

So, if the third page (where the value is read) is correct, perhaps the
second page (where it is set) has a problem?

It's got to be one or the other.

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

Hmmm, when you say

"The content it returns includes a link that calls the same variable,
but I get an error that says the index isn't defined."

what do you mean exactly? Is this an html link? A function call?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Feb 19 '07 #15
On Feb 19, 7:24 am, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
session_start() is called exactly once, at the beginning of the main
script.
There are multiple requests, but there is ONE page.
I've tried putting session_start() at the beginning of the functions
that get called, but they throw "session has already been started"
errors.
On Feb 18, 9:40 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
The only error i get is an undefined index message when the third
request tries to access the $_SESSION variable.
On Feb 18, 8:37 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Evil Otto wrote:
I removed the ?and <?php tags from where you saw the whitespace, so
there's no extraneous whitespace. Had no effect on the problem I'm
seeing; the third request still cannot see changes to the $_SESSION
variable made by the second.
On Feb 18, 3:24 pm, Kimmo Laine <s...@outolempi.netwrote:
Evil Otto kirjoitti:
>There's no output going to the browser before session_start(). The
>top of my script looks like this:
>--quote
><?php
> error_reporting(E_ALL);
> ini_set("display_errors","1");
>?>
Output starts here cos you have a gap between two php tags. It's the
whitespace effect.
><?php
--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)
And can you be sure that *NOTHING* in your include.php file generates
output - including leading or trailing blanks, newline characters, etc.?
What do you get for error messages?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
In that case there are only two options. Either the second page didn't
call session_start() before any output, or the third page didn't do it.
Sessions work. If the second page properly starts the session and sets
the session info, and the third page properly starts the session, it
does work.
I know this sounds blunt - and I'm really sorry, I don't mean to be
blunt about it. But sessions do work. If you have a case where the
second page sets a session variable and the third page can't read it,
one of two things is wrong:
1. The second page didn't actually set the $_SESSION value in the
session (possibly because session_start wasn't called early enough - but
there could be other reasons), or
2. The third page can't read the $_SESSION value. In this case if it
is set, about the only option you have is that session_start() wasn't
called soon enough.
So, if the third page (where the value is read) is correct, perhaps the
second page (where it is set) has a problem?
It's got to be one or the other.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================

Hmmm, when you say

"The content it returns includes a link that calls the same variable,
but I get an error that says the index isn't defined."

what do you mean exactly? Is this an html link? A function call?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
This is an onClick attribute in a div that calls a javascript
function, which makes an Ajax request calling a PHP funciton on the
server.

I think i may have cleared this up, however. Turns out a
session_destroy() was in the wrong place, and an undefined index
should have been expected.

Feb 19 '07 #16

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

Similar topics

1
by: Ken | last post by:
How do I save the values (not variables) for the variables in a file? Example: $_SESSION = "TEST"; $url_read = readfile.php; $url_write = writefile.php; $sort = "var ".$_SESSION; // read...
8
by: chris_fieldhouse | last post by:
Hi fairly new to php, but picking it up quite well. the question I have, is it possible for a php script which is used to validate values submitted in a form, to then post these values onto...
9
by: cendrizzi | last post by:
Hi all, I've read some stuff on this but can't seem to come up with a solution that works right. I have a semi-mature (yet very large and robust) internal web application that currently only...
7
by: mantrid | last post by:
I have some code to upload files to my site. it works when the <input type="file" is posted once even when I use session variables from the posted variables but when I carry those session variables...
1
by: moho | last post by:
Hi I'm trying to use $_SESSION in my AJAX application. However this gives me strange data, the $_SESSION variable seems to change during page load. in the end of the page it's the earlier value...
13
by: Marvin Zhang | last post by:
Hi, I'm not familiar with web programming, but I have a problem here. I have a page. When a user click one button on it, I will use AJAX to request a PHP script which will do a bunch of tasks,...
6
by: =?Utf-8?B?U2hhd24gU2VzbmE=?= | last post by:
Greetings! I was researching AJAX to provide a solution to displaying status messages while a long process executed. I found several examples online and was able to use their code to get a quick...
4
TheServant
by: TheServant | last post by:
Hi guys, This is my situation. I have 3 sets of data used on every page of my website. Two of these never change, and the reason they are stored in MySQL and recalled into the $_SESSION variable is...
5
by: thatcollegeguy | last post by:
Below are my 3php and 2js files. I create a table using ajax/php and then want to change the values in the tables add(+ number for teamid) id's for each specific td in the table. I don't know...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.