473,387 Members | 1,517 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.

Help: Can you make this .php less than 1 month??

Hi. Can somebody PLEASE help. I have spent hours on this.. but I am a
total novice and can't seem to figure it out. Here is a .php script.
Right now, the
minimum amount of time (i.e. duration) allowed is 1 month. However, I
want to be able to reduce the minimum amount of time to 1 day (i.e.
24 hours) -- basically a 24 hour trial period.
Can somebody PLEASE PLEASE tell me what I need to change in this file
to do this? Here is a copy - thanks enormously in advance:
<html>
<head>
<title>Admin Panel</title>
<script language=JavaScript
src="../templates/javascript.js"
type="text/javascript"></script>
<link href="../templates/styles.css" rel="stylesheet"
type="text/css">
<style>
body {background-color:white;
font-family:verdana; font-size:11}
td {font-family:verdana; font-size:11}
input, select, textarea {border-width:1;
border-color:black;font-family:verdana; font-size:11}
.sub {background-color:#336699;
font-family:verdana; color:white;
font-size:11; font-weight:bold; border-width:1; border-color:black}
.TableHead {background-color:#336699;
font-family:verdana;
color:white; font-size:11; font-weight:bold;}
.RedLink {font-family:verdana; color:red;
font-size:11;
font-weight:bold; text-decoration:none}
a.RedLink:hover {text-decoration:underline}
a.GreenLink {font-family:verdana; color:green;
font-size:11;
font-weight:bold; text-decoration:none}
a.GreenLink:hover {text-decoration:underline}
a.BlackLink {font-family:verdana; color:black;
font-size:11;
font-weight:bold; text-decoration:none}
a.BlackLink:hover {text-decoration:underline}
a.BlueLink {font-family:verdana; color:blue;
font-size:11;
font-weight:bold; text-decoration:none}
a.BlueLink:hover {text-decoration:underline}
</style>
<script>
function CheckProfile() {
if(document.RegForm.p1.value=="")
{
window.alert('Enter your password,
please!');
document.RegForm.p1.focus();
return false;
}
if(document.RegForm.p2.value=="")
{
window.alert('Confirm your password,
please!');
document.RegForm.p2.focus();
return false;
}
if(document.RegForm.p1.value != "" &&
document.RegForm.p2.value !=
"" && document.RegForm.p1.value != document.RegForm.p2.value)
{
window.alert('Enter and confirm your
password again!');
document.RegForm.p1.value="";
document.RegForm.p2.value="";
document.RegForm.p1.focus();
return false;
}
if(document.RegForm.FirstName.value=="")
{
window.alert('Enter your First Name,
please!');
document.RegForm.FirstName.focus();
return false;
}
if(document.RegForm.LastName.value=="")
{
window.alert('Enter your Last Name,
please!');
document.RegForm.LastName.focus();
return false;
}
if(document.RegForm.address.value=="")
{
alert('Enter your address, please!');
document.RegForm.address.focus();
return false;
}
if(document.RegForm.city.value=="")
{
alert('Enter your city, please!');
document.RegForm.city.focus();
return false;
}
if(document.RegForm.state.value=="")
{
alert('Enter your state, please!');
document.RegForm.state.focus();
return false;
}
if(document.RegForm.country.value=="")
{
alert('Select your country, please!');
document.RegForm.country.focus();
return false;
}
if(document.RegForm.phone.value=="")
{
window.alert('Enter your Phone,
please!');
document.RegForm.phone.focus();
return false;
}

if(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.RegForm.em*ail.value))

{
return true;
}
alert("Invalid E-mail Address! Please
re-enter.");
document.RegForm.email.focus();
return false;
}
</script>
</head>
<body>
<script>
function CheckNewPrice() {
if(document.f1.PackageName.value=="")
{
window.alert('Enter the new package name,
please!');
document.f1.PackageName.focus();
return false;
}
if(document.f1.NewPrice.value=="")
{
window.alert('Enter the new price value,
please!');
document.f1.NewPrice.focus();
return false;
}
if(document.f1.nDuration.value=="")
{
window.alert('Select a duration period,
please!');
document.f1.nDuration.focus();
return false;
}
if(document.f1.pLevel.value=="")
{
window.alert('Select a priority level,
please!');
document.f1.pLevel.focus();
return false;
}
}
function CheckDelete() {
if(confirm('Are you sure you want to delete this
price?'))
{
return true;
}
else
{
return false;
}
}
</script>
<form method=post name=f1 onsubmit="return CheckNewPrice()">
<table align=center>
<tr>
<td colspan=2 align=center class=TableHead>Enter a new
price</td>
</tr>
<tr>
<td>Package name:</td>
<td><input type=text name=PackageName maxlength=50></td>
</tr>
<tr>
<td>Price:</td>
<td><input type=text name=NewPrice size=6 maxlength=6></td>
</tr>
<tr>
<td>Duration:</td>
<td>
<select name=nDuration>
<option value=""></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
</select> months
</td>
</tr>
<tr>
<td>Priority Level:</td>
<td>
<select name="pLevel">
<option value=""></option>
<option value="1">1 - Standart</option>
<option value="2">2 - Bronze</option>
<option value="3">3 - Platinium</option>
<option value="4">4 - Gold</option>
<option value="5">5 - Premium</option>
</select>
</td>
</tr>
<tr>
<td> </td>
<td><input type=submit name=s1 value=Save class=sub></td>
</tr>
</table>
</form>
<table align=center width=650 cellspacing=0 bordercolor=black
frame=below>
<tr>
<td class=TableHead width=200>Package Name</td>
<td class=TableHead>Priority Level</td>
<td class=TableHead align=center>Duration</td>
<td class=TableHead align=right>Price</td>
<td class=TableHead align=center>Action</td>
<tr>
<td>0</td>
<td>Premium</td>
<td align=center>1 month</td>
<td align=right>$ 0.00</td>
<td align=center><a class=GreenLink
href="PriceEdit.php?PriceID=4">edit</a> | <a class=RedLink
href="PriceDelete.php?PriceID=4" onclick="return
CheckDelete();">delete</a></td>
</tr>
<tr>
<td>Shake Up</td>
<td>Gold</td>
<td align=center>2 months</td>
<td align=right>$ 34.95</td>
<td align=center><a class=GreenLink
href="PriceEdit.php?PriceID=6">edit</a> | <a class=RedLink
href="PriceDelete.php?PriceID=6" onclick="return
CheckDelete();">delete</a></td>
</tr>
<tr>
<td>Grow Up</td>
<td>Platinium</td>
<td align=center>1 month</td>
<td align=right>$ 25.00</td>
<td align=center><a class=GreenLink
href="PriceEdit.php?PriceID=5">edit</a> | <a class=RedLink
href="PriceDelete.php?PriceID=5" onclick="return
CheckDelete();">delete</a></td>
</tr>
</table>
<br><br>

PS: Here are the locations of the 2 .php files that I think you may
need to look at:
http://findthatlawyer.com/siteadmin/PriceEdit.php
http://findthatlawyer.com/siteadmin/SettingsPrices.php

If you could solve this for me, I'd VERY much appreciate it. Thanks in
advance for your time.

Dec 7 '05 #1
7 1828
First and foremost, thank you ENORMOUSLY for taking the time/trouble of
responding to my question. Unfortunately, I am a total novice and even
after looking at your solution, I unfortunately have no idea where the
heck it goes. Um, I hate to ask, but is there any way possible for you
to copy/insert that line in the appropriate place:

$days=1; $endtime = time() + $days * 24 * 3600;

I am not sure where exactly it goes.. and it seems like even after I
insert it, I'm likely going to need to add something else somewhere to
enable me the ability to select the 24 hour period instead of the 1 -
12 month options. For your convenience, here are the links to the 2
..php files that I THINK may have to be modified. Again, I really can't
thank you enough.. and if you decide not to respond, honestly... thanks
again for your time... I'm certainly going to forward your answer to
somebody (once I find them) who can insert this 'stuff' in the right
place..

Here are the locations of the 2 .php files that I think you may
need to look at:
http://findthatlawyer.com/siteadmin/PriceEdit.php
http://findthatlawyer.com/siteadmin/SettingsPrices.php

Very best regards & happy holidays.

:)

Dec 7 '05 #2
PS: Here is my email incase it is easier to communicate and/or
possibly send me the modified .php file: pu*****@NOSPAMatt.net

Remove "NOSPAM" from the email.

Dec 7 '05 #3
I also looked at the .php files noted above.. it does tell you how much
time is left before it is going to expire.. so I know the .php file
will automatically expire.. my problem is, I want it to be able to
offer a free trial for 24 days (instead of 1 month).. once that is
done, I believe it will expire automatically...

The easiest way to see the whole script/site I'm working on is at:
www.FindThatLawyer.com

Feel free to make up/register anything you want to see how it works..
once you register, you can select the free 1 month trial (which I want
modified to 24 hours). Thanks again for ANY help.

Dec 7 '05 #4
"Novice Computer User" <at***********@hotmail.com> wrote:

Hi. Can somebody PLEASE help. I have spent hours on this.. but I am a
total novice and can't seem to figure it out. Here is a .php script.
Right now, the
minimum amount of time (i.e. duration) allowed is 1 month. However, I
want to be able to reduce the minimum amount of time to 1 day (i.e.
24 hours) -- basically a 24 hour trial period.

Can somebody PLEASE PLEASE tell me what I need to change in this file
to do this?
Nothing. The page you posted is not enforcing the time limitation. That's
being done in some other file. You could certainly change the wording here
to refer to days instead of months, but the enforcement is happening
elsewhere.
PS: Here are the locations of the 2 .php files that I think you may
need to look at:
http://findthatlawyer.com/siteadmin/PriceEdit.php
http://findthatlawyer.com/siteadmin/SettingsPrices.php


We can't look at PHP code that way. When we request those pages, it
EXECUTES the code and returns the HTML results to us.
--
- Tim Roberts, ti**@probo.com
Providenza & Boekelheide, Inc.
Dec 8 '05 #5
Tim Roberts wrote:
"Novice Computer User" <at***********@hotmail.com> wrote:
Hi. Can somebody PLEASE help. I have spent hours on this.. but I am a
total novice and can't seem to figure it out. Here is a .php script.
Right now, the
minimum amount of time (i.e. duration) allowed is 1 month. However, I
want to be able to reduce the minimum amount of time to 1 day (i.e.
24 hours) -- basically a 24 hour trial period.

Can somebody PLEASE PLEASE tell me what I need to change in this file
to do this?

Nothing. The page you posted is not enforcing the time limitation. That's
being done in some other file. You could certainly change the wording here
to refer to days instead of months, but the enforcement is happening
elsewhere.

PS: Here are the locations of the 2 .php files that I think you may
need to look at:
http://findthatlawyer.com/siteadmin/PriceEdit.php
http://findthatlawyer.com/siteadmin/SettingsPrices.php

We can't look at PHP code that way. When we request those pages, it
EXECUTES the code and returns the HTML results to us.


Indeed. If you are going to ask a question about PHP in a PHP forum, you
really need to send us the relevant PHP code.
What you have sent is an entire HTML document that does not contain a
single atom of PHP!

Colin
Dec 8 '05 #6
Ok.. Thanks for the info.. I didn't even know I was looking at the
wrong page.. I THINK this is correct page that I need to modify to
reduce the 1 month option to 24 hours. I copied/pasted the .php file
here -- if you can figure out a way to modify the 1 month limit to 24
hours -- or even 1 hour (whichever is easiest is fine with me), PLEASE
let me know.. thanks greatly:

<?
require_once("../conn.php");
require_once("../includes.php");
require_once("access.php");

include_once("LeftStyles.php");

?>

<script>
function CheckNewPrice() {

if(document.f1.PackageName.value=="")
{
window.alert('Enter the new package name, please!');
document.f1.PackageName.focus();
return false;
}

if(document.f1.NewPrice.value=="")
{
window.alert('Enter the new price value, please!');
document.f1.NewPrice.focus();
return false;
}

if(document.f1.nDuration.value=="")
{
window.alert('Select a duration period, please!');
document.f1.nDuration.focus();
return false;
}

if(document.f1.pLevel.value=="")
{
window.alert('Select a priority level, please!');
document.f1.pLevel.focus();
return false;
}

}

function CheckDelete() {

if(confirm('Are you sure you want to delete this price?'))
{
return true;
}
else
{
return false;
}

}

</script>

<form method=post name=f1 onsubmit="return CheckNewPrice()">

<table align=center>
<tr>
<td colspan=2 align=center class=TableHead>Enter a new price</td>
</tr>

<tr>
<td>Package name:</td>
<td><input type=text name=PackageName maxlength=50></td>
</tr>
<tr>
<td>Price:</td>
<td><input type=text name=NewPrice size=6 maxlength=6></td>
</tr>

<tr>
<td>Duration:</td>
<td>
<select name=nDuration>
<option value=""></option>
<?
for($i = '1'; $i <= '12'; $i++)
{
echo "<option value=\"$i\">$i</option>\n";
}
?>
</select> months
</td>
</tr>

<tr>
<td>Priority Level:</td>
<td>
<select name="pLevel">
<option value=""></option>
<?
//create the Priority level select menu
$q1 = "select * from legal_priority order by PriorityLevel asc ";
$r1 = mysql_query($q1) or die(mysql_error());
while($a1 = mysql_fetch_array($r1))
{
echo "<option value=\"$a1[PriorityLevel]\">$a1[PriorityLevel] -
$a1[PriorityName]</option>\n\t";
}
?>
</select>
</td>
</tr>

<tr>
<td>&nbsp;</td>
<td><input type=submit name=s1 value=Save class=sub></td>
</tr>

</table>

</form>

<?

if(isset($_POST[s1]))
{
$q1 = "insert into legal_prices set
PackageName = '$_POST[PackageName]',
PriceValue = '$_POST[NewPrice]',
Duration = '$_POST[nDuration]',
PriorityLevel = '$_POST[pLevel]' ";

mysql_query($q1) or die(mysql_error());
}

//show prices
$q1 = "select * from legal_prices, legal_priority where
legal_prices.PriorityLevel = legal_priority.PriorityLevel order by
legal_prices.PriorityLevel desc";
$r1 = mysql_query($q1) or die(mysql_error());

if(mysql_num_rows($r1) == '0')
{
exit();
}

?>

<table align=center width=650 cellspacing=0 bordercolor=black
frame=below>
<tr>
<td class=TableHead width=200>Package Name</td>
<td class=TableHead>Priority Level</td>
<td class=TableHead align=center>Duration</td>
<td class=TableHead align=right>Price</td>
<td class=TableHead align=center>Action</td>

<?
while($a1 = mysql_fetch_array($r1))
{
if($a1[Duration] > '1')
{
$MyDuration = $a1[Duration]." months";
}
else
{
$MyDuration = $a1[Duration]." month";
}

echo
"<tr>\n\t<td>$a1[PackageName]</td>\n\t<td>$a1[PriorityName]</td>\n\t<td
align=center>$MyDuration</td>\n\t<td align=right>$aset[currency_sign]
$a1[PriceValue]</td>\n\t<td align=center><a class=GreenLink
href=\"PriceEdit.php?PriceID=$a1[PriceID]\">edit</a> | <a class=RedLink
href=\"PriceDelete.php?PriceID=$a1[PriceID]\" onclick=\"return
CheckDelete();\">delete</a></td>\n</tr>\n\n ";
}

echo "</table>\n\n<br><br>";
?>

Dec 8 '05 #7
Novice Computer User wrote:
Ok.. Thanks for the info.. I didn't even know I was looking at the
wrong page.. I THINK this is correct page that I need to modify to
reduce the 1 month option to 24 hours. I copied/pasted the .php file
here -- if you can figure out a way to modify the 1 month limit to 24
hours -- or even 1 hour (whichever is easiest is fine with me), PLEASE
let me know.. thanks greatly:

<?
require_once("../conn.php");
require_once("../includes.php");
require_once("access.php");

include_once("LeftStyles.php");

?>

<script>
function CheckNewPrice() {

if(document.f1.PackageName.value=="")
{
window.alert('Enter the new package name, please!');
document.f1.PackageName.focus();
return false;
}

if(document.f1.NewPrice.value=="")
{
window.alert('Enter the new price value, please!');
document.f1.NewPrice.focus();
return false;
}

if(document.f1.nDuration.value=="")
{
window.alert('Select a duration period, please!');
document.f1.nDuration.focus();
return false;
}

if(document.f1.pLevel.value=="")
{
window.alert('Select a priority level, please!');
document.f1.pLevel.focus();
return false;
}

}

function CheckDelete() {

if(confirm('Are you sure you want to delete this price?'))
{
return true;
}
else
{
return false;
}

}

</script>

<form method=post name=f1 onsubmit="return CheckNewPrice()">

<table align=center>
<tr>
<td colspan=2 align=center class=TableHead>Enter a new price</td>
</tr>

<tr>
<td>Package name:</td>
<td><input type=text name=PackageName maxlength=50></td>
</tr>
<tr>
<td>Price:</td>
<td><input type=text name=NewPrice size=6 maxlength=6></td>
</tr>

<tr>
<td>Duration:</td>
<td>
<select name=nDuration>
<option value=""></option>
<?
for($i = '1'; $i <= '12'; $i++)
{
echo "<option value=\"$i\">$i</option>\n";
}
?>
</select> months
</td>
</tr>

<tr>
<td>Priority Level:</td>
<td>
<select name="pLevel">
<option value=""></option>
<?
//create the Priority level select menu
$q1 = "select * from legal_priority order by PriorityLevel asc ";
$r1 = mysql_query($q1) or die(mysql_error());
while($a1 = mysql_fetch_array($r1))
{
echo "<option value=\"$a1[PriorityLevel]\">$a1[PriorityLevel] -
$a1[PriorityName]</option>\n\t";
}
?>
</select>
</td>
</tr>

<tr>
<td>&nbsp;</td>
<td><input type=submit name=s1 value=Save class=sub></td>
</tr>

</table>

</form>

<?

if(isset($_POST[s1]))
{
$q1 = "insert into legal_prices set
PackageName = '$_POST[PackageName]',
PriceValue = '$_POST[NewPrice]',
Duration = '$_POST[nDuration]',
PriorityLevel = '$_POST[pLevel]' ";

mysql_query($q1) or die(mysql_error());
}

//show prices
$q1 = "select * from legal_prices, legal_priority where
legal_prices.PriorityLevel = legal_priority.PriorityLevel order by
legal_prices.PriorityLevel desc";
$r1 = mysql_query($q1) or die(mysql_error());

if(mysql_num_rows($r1) == '0')
{
exit();
}

?>

<table align=center width=650 cellspacing=0 bordercolor=black
frame=below>
<tr>
<td class=TableHead width=200>Package Name</td>
<td class=TableHead>Priority Level</td>
<td class=TableHead align=center>Duration</td>
<td class=TableHead align=right>Price</td>
<td class=TableHead align=center>Action</td>

<?
while($a1 = mysql_fetch_array($r1))
{
if($a1[Duration] > '1')
{
$MyDuration = $a1[Duration]." months";
}
else
{
$MyDuration = $a1[Duration]." month";
}

echo
"<tr>\n\t<td>$a1[PackageName]</td>\n\t<td>$a1[PriorityName]</td>\n\t<td
align=center>$MyDuration</td>\n\t<td align=right>$aset[currency_sign]
$a1[PriceValue]</td>\n\t<td align=center><a class=GreenLink
href=\"PriceEdit.php?PriceID=$a1[PriceID]\">edit</a> | <a class=RedLink
href=\"PriceDelete.php?PriceID=$a1[PriceID]\" onclick=\"return
CheckDelete();\">delete</a></td>\n</tr>\n\n ";
}

echo "</table>\n\n<br><br>";
?>
You say you have spent HOURS on this question. I don't wish to seem
unkind, but what did you spend hours doing?

Reading an introduction to HTML might help, as would trying to
understand what the code does.

ALL that the code above does with Duration is:

<select name=nDuration> <option value=""></option>
<?
for($i = '1'; $i <= '12'; $i++)
{
echo "<option value=\"$i\">$i</option>\n";
}
?>
</select> months
which creates a drop-down menu offering the numbers 1-12. (The only PHP
here is the loop generating the entries).

On going to the edit page (I think, I haven't checked the details), it
saves the data in the database:
$q1 = "insert into legal_prices set
PackageName = '$_POST[PackageName]',
PriceValue = '$_POST[NewPrice]',
Duration = '$_POST[nDuration]',
PriorityLevel = '$_POST[pLevel]' ";
Then it displays it for the user to decide what to do. First it does: if($a1[Duration] > '1')
{
$MyDuration = $a1[Duration]." months";
}
else
{
$MyDuration = $a1[Duration]." month";
}


which gets the duration out the database and sets the variable
$MyDuration to "1 month" or "6 months" etc.
Then it displays it to the user offering 'edit' and 'delete'.

As regards the code above, this is all that happens to it, and you can
quite happily change the word 'month' to 'day' and the value '12' to
'24' and it will suddenly offer you 1-24 days instead of 1-12 months.
(You'll presumably need to make a corresponding change to the original
HTML file you posted, but I'll leave the details as an exercise).
However, you haven't shown us what it does with that duration value - I
guess that's in some other script somewhere that gets it out of the
database - and since it's about a duration that expires, I would guess
that it's not a web script at all, but another script or program that is
run every month. (This might be manual but is more likely to be
automatic. If you are on a unix-like system it's probably run by 'cron',
on Windows there's something called ? Windows scheduler ? )
Presumably that script does some date calculation, and you'll have to
tell it that duration has suddenly become days rather than months. Oh,
and you'll have to arrange to run it every day.

Colin
Dec 9 '05 #8

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

Similar topics

15
by: Philip Mette | last post by:
I am begginner at best so I hope someone that is better can help. I have a stored procedure that updates a view that I wrote using 2 cursors.(Kind of a Inner Loop) I wrote it this way Because I...
5
by: Craig Keightley | last post by:
Please help, i have attached my page which worksin IE but i cannnot get the drop down menu to fucntion in firefox. Any one have any ideas why? Many Thanks Craig ...
1
by: Colm O'Brien | last post by:
I have a field called year end month where records hold the month financial year end for accounts is stored. i need to query the data base and return all records where year end month is less...
5
by: Novice Computer User | last post by:
Hi. Can somebody PLEASE help. Here is a .php script. Right now, the minimum amount of time (i.e. duration) allowed is 1 month. However, I want to be able to reduce the minimum amount of time to...
2
by: coinjo | last post by:
#include<fstream> #include<iostream> #include<cstring> using namespace std; struct date { int day, month, year; };
21
by: Marina | last post by:
I've spent 2 months working on this Access 2003 db, get something done and then the 'boss' wants something different that what was originally stated, or wants to add this or that. It's been nuts,...
11
by: samuelberthelot | last post by:
Hi, I've got 3 input HTML (dropdown lists) on my page. One for selecting a Month, one for the day, one for the year. Very simple... My problem is that I'd like to update the Days one according...
1
by: tgregg6 | last post by:
These problems have been given me troble for a couple of days please help me!!! problem 1: This program calculates the charges for DVD rentals where current releases cost $3.5 and all others cast...
7
by: John | last post by:
I have a table with amongst others 2 fields: DateIn and DateOut. The idea is to make a chart that shows the average number of days it takes for a request to be answered. I'm planning to make a...
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:
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: 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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...

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.