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

Redirection Javascript via SRC

Bonjour,

Je souhaite lancer une redirection vers un fichier php via SRC= dans une
condition if (voir ci-dessous en bas du script) mais la redirection ne
fonctionne pas. Par contre la condition est bien validée car le cookie (crée
précédemment) est bien effacé par SetCookie.
Pourriez-vous me dire ce qui ne va pas ?

Merci d'avance
Steph

<SCRIPT language="javascript" type="text/javascript">
var pathname=location.pathname;
var myDomain=pathname.substring(0,pathname.lastIndexOf ('/')) +'/';
var date_exp = new Date();
var date_del = new Date();
date_exp.setTime(date_exp.getTime()+(3600*1000)); // cookie de 1
heure
date_del.setTime(date_del.getTime()-(365*24*3600*1000)); // Tuer le cookie

function SetCookie (name, value) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
((expires==null) ? "" : (";
expires="+expires.toGMTString()))+
((path==null) ? "" : ("; path="+path))+
((domain==null) ? "" : ("; domain="+domain))+
((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
var endstr=document.cookie.indexOf (";", offset);
if (endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i, j)==arg)
return getCookieVal (j);
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;}
return null;
}
// CHECK IF INDEX VALUE SET
var index=GetCookie("Index");
if (index!="") {
src=http://www.siteweb.com/fichier.php?partnerID=partner;
//DELETE COOKIE
SetCookie("Index","",date_del,myDomain);
}

</SCRIPT>
Sep 19 '05 #1
7 2094

"Steph" <mc****@hotmail.com> a écrit dans le message de news:
43***********************@news.free.fr...
Bonjour,

Je souhaite lancer une redirection vers un fichier php via SRC= dans une
condition if (voir ci-dessous en bas du script) mais la redirection ne
fonctionne pas. Par contre la condition est bien validée car le cookie
(crée précédemment) est bien effacé par SetCookie.
Pourriez-vous me dire ce qui ne va pas ?

Merci d'avance
Steph

<SCRIPT language="javascript" type="text/javascript">
var pathname=location.pathname;
var myDomain=pathname.substring(0,pathname.lastIndexOf ('/')) +'/';
var date_exp = new Date();
var date_del = new Date();
date_exp.setTime(date_exp.getTime()+(3600*1000)); // cookie de 1
heure
date_del.setTime(date_del.getTime()-(365*24*3600*1000)); // Tuer le cookie

function SetCookie (name, value) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
((expires==null) ? "" : (";
expires="+expires.toGMTString()))+
((path==null) ? "" : ("; path="+path))+
((domain==null) ? "" : ("; domain="+domain))+
((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
var endstr=document.cookie.indexOf (";", offset);
if (endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i, j)==arg)
return getCookieVal (j);
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;}
return null;
}
// CHECK IF INDEX VALUE SET
var index=GetCookie("Index");
if (index!="") {
src=http://www.siteweb.com/fichier.php?partnerID=partner;
//DELETE COOKIE
SetCookie("Index","",date_del,myDomain);
}

</SCRIPT>

A la fin du script, il y a une petite erreur, partner = index.
Sep 19 '05 #2

Steph wrote:
Bonjour,

Je souhaite lancer une redirection vers un fichier php via SRC= dans une
condition if (voir ci-dessous en bas du script) mais la redirection ne
fonctionne pas. Par contre la condition est bien validée car le cookie (crée
précédemment) est bien effacé par SetCookie.
Pourriez-vous me dire ce qui ne va pas ?

Merci d'avance
Steph

<SCRIPT language="javascript" type="text/javascript">
var pathname=location.pathname;
var myDomain=pathname.substring(0,pathname.lastIndexOf ('/')) +'/';
var date_exp = new Date();
var date_del = new Date();
date_exp.setTime(date_exp.getTime()+(3600*1000)); // cookie de 1
heure
date_del.setTime(date_del.getTime()-(365*24*3600*1000)); // Tuer le cookie

function SetCookie (name, value) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
((expires==null) ? "" : (";
expires="+expires.toGMTString()))+
((path==null) ? "" : ("; path="+path))+
((domain==null) ? "" : ("; domain="+domain))+
((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
var endstr=document.cookie.indexOf (";", offset);
if (endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i, j)==arg)
return getCookieVal (j);
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;}
return null;
}
// CHECK IF INDEX VALUE SET
var index=GetCookie("Index");
if (index!="") {
src=http://www.siteweb.com/fichier.php?partnerID=partner;
I believe the problem is here. You should change it to:

window.location.href =
"http://www.siteweb.com/fichier.php?partnerID=partner";
//DELETE COOKIE
SetCookie("Index","",date_del,myDomain);
}

</SCRIPT>


Sep 19 '05 #3

"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@f14g2000cwb.googlegroups. com...

Steph wrote:
Bonjour,

Je souhaite lancer une redirection vers un fichier php via SRC= dans une
condition if (voir ci-dessous en bas du script) mais la redirection ne
fonctionne pas. Par contre la condition est bien validée car le cookie
(crée
précédemment) est bien effacé par SetCookie.
Pourriez-vous me dire ce qui ne va pas ?

Merci d'avance
Steph

<SCRIPT language="javascript" type="text/javascript">
var pathname=location.pathname;
var myDomain=pathname.substring(0,pathname.lastIndexOf ('/')) +'/';
var date_exp = new Date();
var date_del = new Date();
date_exp.setTime(date_exp.getTime()+(3600*1000)); // cookie de 1
heure
date_del.setTime(date_del.getTime()-(365*24*3600*1000)); // Tuer le cookie

function SetCookie (name, value) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
((expires==null) ? "" : (";
expires="+expires.toGMTString()))+
((path==null) ? "" : ("; path="+path))+
((domain==null) ? "" : ("; domain="+domain))+
((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
var endstr=document.cookie.indexOf (";", offset);
if (endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i, j)==arg)
return getCookieVal (j);
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;}
return null;
}
// CHECK IF INDEX VALUE SET
var index=GetCookie("Index");
if (index!="") {
src=http://www.siteweb.com/fichier.php?partnerID=partner;
I believe the problem is here. You should change it to:

window.location.href =
"http://www.siteweb.com/fichier.php?partnerID=partner";
//DELETE COOKIE
SetCookie("Index","",date_del,myDomain);
}

</SCRIPT>

Yes that's work fine !
Can you just tell me how i can pass the variable index to the php file.
Indeed with the 'http://www.siteweb.com/fichier.php?partnerID=index"; the
partnerID equal index but not equal to variable contained into index.

Many thanks
Steph
Sep 20 '05 #4

Steph wrote:
"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@f14g2000cwb.googlegroups. com...

Steph wrote:
Bonjour,

Je souhaite lancer une redirection vers un fichier php via SRC= dans une
condition if (voir ci-dessous en bas du script) mais la redirection ne
fonctionne pas. Par contre la condition est bien validée car le cookie
(crée
précédemment) est bien effacé par SetCookie.
Pourriez-vous me dire ce qui ne va pas ?

Merci d'avance
Steph

<SCRIPT language="javascript" type="text/javascript">
var pathname=location.pathname;
var myDomain=pathname.substring(0,pathname.lastIndexOf ('/')) +'/';
var date_exp = new Date();
var date_del = new Date();
date_exp.setTime(date_exp.getTime()+(3600*1000)); // cookie de 1
heure
date_del.setTime(date_del.getTime()-(365*24*3600*1000)); // Tuer le cookie

function SetCookie (name, value) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
((expires==null) ? "" : (";
expires="+expires.toGMTString()))+
((path==null) ? "" : ("; path="+path))+
((domain==null) ? "" : ("; domain="+domain))+
((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
var endstr=document.cookie.indexOf (";", offset);
if (endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i, j)==arg)
return getCookieVal (j);
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;}
return null;
}
// CHECK IF INDEX VALUE SET
var index=GetCookie("Index");
if (index!="") {
src=http://www.siteweb.com/fichier.php?partnerID=partner;


I believe the problem is here. You should change it to:

window.location.href =
"http://www.siteweb.com/fichier.php?partnerID=partner";
//DELETE COOKIE
SetCookie("Index","",date_del,myDomain);
}

</SCRIPT>

Yes that's work fine !
Can you just tell me how i can pass the variable index to the php file.
Indeed with the 'http://www.siteweb.com/fichier.php?partnerID=index"; the
partnerID equal index but not equal to variable contained into index.

Many thanks
Steph


If I understood correctly, then this is what you want:

window.location.href = "http://url" + index;

Hope this helps :)

Sep 20 '05 #5

"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@g47g2000cwa.googlegroups. com...

Steph wrote:
"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@f14g2000cwb.googlegroups. com...

Steph wrote:
Bonjour,

Je souhaite lancer une redirection vers un fichier php via SRC= dans une
condition if (voir ci-dessous en bas du script) mais la redirection ne
fonctionne pas. Par contre la condition est bien validée car le cookie
(crée
précédemment) est bien effacé par SetCookie.
Pourriez-vous me dire ce qui ne va pas ?

Merci d'avance
Steph

<SCRIPT language="javascript" type="text/javascript">
var pathname=location.pathname;
var myDomain=pathname.substring(0,pathname.lastIndexOf ('/')) +'/';
var date_exp = new Date();
var date_del = new Date();
date_exp.setTime(date_exp.getTime()+(3600*1000)); // cookie de 1
heure
date_del.setTime(date_del.getTime()-(365*24*3600*1000)); // Tuer le
cookie

function SetCookie (name, value) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
((expires==null) ? "" : (";
expires="+expires.toGMTString()))+
((path==null) ? "" : ("; path="+path))+
((domain==null) ? "" : ("; domain="+domain))+
((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
var endstr=document.cookie.indexOf (";", offset);
if (endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset,
endstr));
}
function GetCookie (name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i, j)==arg)
return getCookieVal (j);
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;}
return null;
}
// CHECK IF INDEX VALUE SET
var index=GetCookie("Index");
if (index!="") {
src=http://www.siteweb.com/fichier.php?partnerID=partner;


I believe the problem is here. You should change it to:

window.location.href =
"http://www.siteweb.com/fichier.php?partnerID=partner";
//DELETE COOKIE
SetCookie("Index","",date_del,myDomain);
}

</SCRIPT>

Yes that's work fine !
Can you just tell me how i can pass the variable index to the php file.
Indeed with the 'http://www.siteweb.com/fichier.php?partnerID=index"; the
partnerID equal index but not equal to variable contained into index.

Many thanks
Steph


If I understood correctly, then this is what you want:

window.location.href = "http://url" + index;

Hope this helps :)

Yes it works, thanks !
Last question (if you don't mind) : if i have more than one javascript
variable to pass with the URL to the php file like
http://url.php?partner1=$index1&partner2=$index2&partner3 =$index3 what is
the exact synthax to use with window.location.href ?
Sep 20 '05 #6

Steph wrote:
"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@g47g2000cwa.googlegroups. com...

Steph wrote:
"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@f14g2000cwb.googlegroups. com...

Steph wrote:
Bonjour,

Je souhaite lancer une redirection vers un fichier php via SRC= dans une
condition if (voir ci-dessous en bas du script) mais la redirection ne
fonctionne pas. Par contre la condition est bien validée car le cookie
(crée
précédemment) est bien effacé par SetCookie.
Pourriez-vous me dire ce qui ne va pas ?

Merci d'avance
Steph

<SCRIPT language="javascript" type="text/javascript">
var pathname=location.pathname;
var myDomain=pathname.substring(0,pathname.lastIndexOf ('/')) +'/';
var date_exp = new Date();
var date_del = new Date();
date_exp.setTime(date_exp.getTime()+(3600*1000)); // cookie de1
heure
date_del.setTime(date_del.getTime()-(365*24*3600*1000)); // Tuer le
cookie

function SetCookie (name, value) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
((expires==null) ? "" : (";
expires="+expires.toGMTString()))+
((path==null) ? "" : ("; path="+path))+
((domain==null) ? "" : ("; domain="+domain))+
((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
var endstr=document.cookie.indexOf (";", offset);
if (endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset,
endstr));
}
function GetCookie (name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i, j)==arg)
return getCookieVal (j);
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;}
return null;
}
// CHECK IF INDEX VALUE SET
var index=GetCookie("Index");
if (index!="") {
src=http://www.siteweb.com/fichier.php?partnerID=partner;


I believe the problem is here. You should change it to:

window.location.href =
"http://www.siteweb.com/fichier.php?partnerID=partner";
//DELETE COOKIE
SetCookie("Index","",date_del,myDomain);
}

</SCRIPT>

Yes that's work fine !
Can you just tell me how i can pass the variable index to the php file.
Indeed with the 'http://www.siteweb.com/fichier.php?partnerID=index";the
partnerID equal index but not equal to variable contained into index.

Many thanks
Steph


If I understood correctly, then this is what you want:

window.location.href = "http://url" + index;

Hope this helps :)

Yes it works, thanks !
Last question (if you don't mind) : if i have more than one javascript
variable to pass with the URL to the php file like
http://url.php?partner1=$index1&partner2=$index2&partner3 =$index3 what is
the exact synthax to use with window.location.href ?


In that case you would do something like this:

window.location.href = "http://url.php?partner1=" + index1 +
"&partner2=" + index2 + "&partner3=" + index3;

Sep 20 '05 #7

"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@g49g2000cwa.googlegroups. com...

Steph wrote:
"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@g47g2000cwa.googlegroups. com...

Steph wrote:
"web.dev" <we********@gmail.com> a écrit dans le message de news:
11**********************@f14g2000cwb.googlegroups. com...

Steph wrote:
Bonjour,

Je souhaite lancer une redirection vers un fichier php via SRC= dans
une
condition if (voir ci-dessous en bas du script) mais la redirection ne
fonctionne pas. Par contre la condition est bien validée car le cookie
(crée
précédemment) est bien effacé par SetCookie.
Pourriez-vous me dire ce qui ne va pas ?

Merci d'avance
Steph

<SCRIPT language="javascript" type="text/javascript">
var pathname=location.pathname;
var myDomain=pathname.substring(0,pathname.lastIndexOf ('/')) +'/';
var date_exp = new Date();
var date_del = new Date();
date_exp.setTime(date_exp.getTime()+(3600*1000)); // cookie de
1
heure
date_del.setTime(date_del.getTime()-(365*24*3600*1000)); // Tuer le
cookie

function SetCookie (name, value) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
((expires==null) ? "" : (";
expires="+expires.toGMTString()))+
((path==null) ? "" : ("; path="+path))+
((domain==null) ? "" : ("; domain="+domain))+
((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
var endstr=document.cookie.indexOf (";", offset);
if (endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset,
endstr));
}
function GetCookie (name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i, j)==arg)
return getCookieVal (j);
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;}
return null;
}
// CHECK IF INDEX VALUE SET
var index=GetCookie("Index");
if (index!="") {
src=http://www.siteweb.com/fichier.php?partnerID=partner;


I believe the problem is here. You should change it to:

window.location.href =
"http://www.siteweb.com/fichier.php?partnerID=partner";
//DELETE COOKIE
SetCookie("Index","",date_del,myDomain);
}

</SCRIPT>

Yes that's work fine !
Can you just tell me how i can pass the variable index to the php file.
Indeed with the 'http://www.siteweb.com/fichier.php?partnerID=index";
the
partnerID equal index but not equal to variable contained into index.

Many thanks
Steph


If I understood correctly, then this is what you want:

window.location.href = "http://url" + index;

Hope this helps :)

Yes it works, thanks !
Last question (if you don't mind) : if i have more than one javascript
variable to pass with the URL to the php file like
http://url.php?partner1=$index1&partner2=$index2&partner3 =$index3 what is
the exact synthax to use with window.location.href ?


In that case you would do something like this:

window.location.href = "http://url.php?partner1=" + index1 +
"&partner2=" + index2 + "&partner3=" + index3;

Great !
Many thanks for your quick support
Sep 20 '05 #8

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

Similar topics

2
by: Topspin | last post by:
I'm running PHP on Windows, but that's just the local test... in production it will be on Apache. I am not using PHP as a CGI. I want to perform redirection of the user's browser if the user...
1
by: shane turner | last post by:
Is there any way to do a progress bar redirection using Javascript? If so, where can I find an example?
3
by: Wazz Up | last post by:
Hi, I'm trying run an image slide show where the images rotate once each, then after the last image in the array has been displayed for the specified amount of time, a redirection to another...
1
by: pdc | last post by:
I have two web servers that I use, one is the primary and the other is a backup for when the server is down. I use a third, central server which redirects a browser's initial link to one of my...
4
by: pdc | last post by:
have two web servers that I use, one is the primary and the other is a backup for when the server is down. I use a third, central server which redirects a browser's initial link to one of my web...
8
by: Luciano A. Ferrer | last post by:
Hi! I was following the http://www.seomoz.org/articles/301-redirects.php article, trying to do that with one of my test sites I added this to the .htaccess file: RewriteEngine On RewriteCond...
1
by: comp.lang.php | last post by:
require_once("/users/ppowell/web/php_global_vars.php"); if ($_GET) { // INITIALIZE VARS $fileID = @fopen("$userPath/xml/redirect.xml", 'r'); $stuff = @fread($fileID,...
13
by: Massimo Fabbri | last post by:
Maybe it's a little OT, but I'll give it try anyway.... I was asked to maintain and further develop an already existing small company's web site. I know the golden rule of "eternal" URIs, but...
2
by: Oliver Wong | last post by:
I'm trying to have the "submit" button of a form open a new window which loads a PDF, and also to redirect the window containing the submit button to a new location. Here's a small HTML file...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
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: 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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.