473,770 Members | 2,781 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

strange behaviour using arrays to update records

Hello
Im having problems working out why the following code does not work. I dont
think its the sql as the error occurs on the first update which ever one is
put there ($q1 or $q2). Ive swapped then around to test this.
Help greatly appreciated

The error is Unknown column 'A' in 'field list'
but there is no field 'A'. im thinking that the 'A' may be first letter of
the word Array, as if it is using this as a variable, but i dont know how.
$commindexarray =$_POST['commindex'];
$catarray=addsl ashes($_POST['category']);
$commarray=adds lashes($_POST['comm']);
$availarray=$_P OST['avail'];
$delarray=$_POS T['del'];

if($delarray==' '){
for ($i = 0; $i < count($comminde xarray); $i++){
$currtime=date( 'YmdHis');
$q2 ="UPDATE usercomms SET typeid={$catarr ay[$i]} WHERE userid=
".$_SESSION['userid']." AND commindex ={$commindexarr ay[$i]}";//
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry, there was a problem updating. Try
again.<br><br>E rror - 1 '.count($delarr ay). mysql_error().' </span>');
$q="UPDATE comments SET typeid={$catarr ay[$i]}, comment='{$comm array[$i]}',
available={$ava ilarray[$i]}, timestp='$currt ime', globalavail=0 WHERE
commindex={$com mindexarray[$i]}";//
$updatecomm = mysql_query($q) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');

}
}
Aug 7 '06 #1
8 1612
mantrid wrote:
Hello
Im having problems working out why the following code does not work. I dont
think its the sql as the error occurs on the first update which ever one is
put there ($q1 or $q2). Ive swapped then around to test this.
Help greatly appreciated

The error is Unknown column 'A' in 'field list'
but there is no field 'A'. im thinking that the 'A' may be first letter of
the word Array, as if it is using this as a variable, but i dont know how.
$commindexarray =$_POST['commindex'];
$catarray=addsl ashes($_POST['category']);
$commarray=adds lashes($_POST['comm']);
$availarray=$_P OST['avail'];
$delarray=$_POS T['del'];

if($delarray==' '){
for ($i = 0; $i < count($comminde xarray); $i++){
$currtime=date( 'YmdHis');
$q2 ="UPDATE usercomms SET typeid={$catarr ay[$i]} WHERE userid=
".$_SESSION['userid']." AND commindex ={$commindexarr ay[$i]}";//
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry, there was a problem updating. Try
again.<br><br>E rror - 1 '.count($delarr ay). mysql_error().' </span>');
$q="UPDATE comments SET typeid={$catarr ay[$i]}, comment='{$comm array[$i]}',
available={$ava ilarray[$i]}, timestp='$currt ime', globalavail=0 WHERE
commindex={$com mindexarray[$i]}";//
$updatecomm = mysql_query($q) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');

}
}

Non-numeric constants MUST be enclosed in single quotes in your SQL
statements. Otherwise they may be taken as a column name.
--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Aug 7 '06 #2
"mantrid" <ia********@vir gin.netwrote:
Im having problems working out why the following code does not work. I dont
think its the sql as the error occurs on the first update which ever one is
put there ($q1 or $q2). Ive swapped then around to test this.
Help greatly appreciated

The error is Unknown column 'A' in 'field list'
but there is no field 'A'. im thinking that the 'A' may be first letter of
the word Array, as if it is using this as a variable, but i dont know how.
$commindexarray =$_POST['commindex'];
$catarray=addsl ashes($_POST['category']);
$commarray=adds lashes($_POST['comm']);
$availarray=$_P OST['avail'];
$delarray=$_POS T['del'];

if($delarray==' '){
for ($i = 0; $i < count($comminde xarray); $i++){
$currtime=date( 'YmdHis');
$q2 ="UPDATE usercomms SET typeid={$catarr ay[$i]} WHERE userid=
".$_SESSION['userid']." AND commindex ={$commindexarr ay[$i]}";//
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry, there was a problem updating. Try
again.<br><br>E rror - 1 '.count($delarr ay). mysql_error().' </span>');
$q="UPDATE comments SET typeid={$catarr ay[$i]}, comment='{$comm array[$i]}',
available={$ava ilarray[$i]}, timestp='$currt ime', globalavail=0 WHERE
commindex={$com mindexarray[$i]}";//
$updatecomm = mysql_query($q) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');

}
}
PHP is not Perl. If you call addslashes() on an array, it treats it as a
string, which means it has the value "Array". Then, when $i == 0 and you
look at $catarray[$i], you get the first character, which is 'A'.

You need to iterate through your arrays and call addslashes on each
element individually. The most efficient way would be to move the
addslashes (or perhaps mysql_real_esca pe_string instead) inside the $i
for loop that you already have:

for ($i = 0; $i < count($comminde xarray); $i++)
{
$cat = intval($_POST['category'][$i]);
$comm = mysql_real_esca pe_string($_POS T['comm'][$i]);
$q = "update usercomms
set type = {$cat},
comm = {$comm}
where whatever";
}

miguel
--
Photos from 40 countries on 5 continents: http://travel.u.nu
Latest photos: Malaysia; Thailand; Singapore; Spain; Morocco
Airports of the world: http://airport.u.nu
Aug 7 '06 #3
"mantrid" <ia********@vir gin.netwrote in message
news:aN******** ************@ne wsfe6-gui.ntli.net...
Hello
Im having problems working out why the following code does not work. I
dont
think its the sql as the error occurs on the first update which ever one
is
put there ($q1 or $q2). Ive swapped then around to test this.
Help greatly appreciated

The error is Unknown column 'A' in 'field list'
but there is no field 'A'. im thinking that the 'A' may be first letter of
the word Array, as if it is using this as a variable, but i dont know how.
$commindexarray =$_POST['commindex'];
$catarray=addsl ashes($_POST['category']);
$commarray=adds lashes($_POST['comm']);
$availarray=$_P OST['avail'];
$delarray=$_POS T['del'];

if($delarray==' '){
for ($i = 0; $i < count($comminde xarray); $i++){
$currtime=date( 'YmdHis');
$q2 ="UPDATE usercomms SET typeid={$catarr ay[$i]} WHERE userid=
".$_SESSION['userid']." AND commindex ={$commindexarr ay[$i]}";//
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry, there was a problem updating. Try
again.<br><br>E rror - 1 '.count($delarr ay). mysql_error().' </span>');
$q="UPDATE comments SET typeid={$catarr ay[$i]},
comment='{$comm array[$i]}',
available={$ava ilarray[$i]}, timestp='$currt ime', globalavail=0 WHERE
commindex={$com mindexarray[$i]}";//
$updatecomm = mysql_query($q) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');

}
}

Not to mention that you are intermixing two styles of string
concatination.. . try:

$q2 ="UPDATE usercomms SET typeid={$catarr ay[$i]} WHERE
userid={$_SESSI ON['userid']} AND commindex ={$commindexarr ay[$i]}";

Norm
--
FREE Avatar hosting at www.easyavatar.com
Aug 7 '06 #4
Ive made the changes you suggested. I dont get any errors now but the
records are not updating. It is most puzzling. My updated code is below
*************** *************** *************** *************** *************** *
*****
$delarray=$_POS T['del'];//not needed in the sql of first two queries so isnt
in for loop

if(count($delar ray)==0){
for ($i = 0; $i < count($comminde xarray); $i++){
$currtime=date( 'YmdHis');
$cat = intval($_POST['category'][$i]);
$comm = mysql_real_esca pe_string($_POS T['comm'][$i]);
$avail =$_POST['avail'][$i];
$commindex = intval($_POST['commindex'][$i]);

$q2 ="UPDATE usercomms SET typeid=$cat WHERE userid=".$_SESS ION['userid']."
AND commindex =$commindex";//
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry, there was a problem updating. Try
again.<br><br>E rror - 1 '.count($delarr ay). mysql_error().' </span>');
$q="UPDATE comments SET typeid=$cat, comment='$comm' , available=$avai l,
timestp='$currt ime', globalavail=0 WHERE commindex=$comm index";//
$updatecomm = mysql_query($q) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');
}
}

*************** *************** *************** *************** ************

Im also getting the following warning (below) on the bottom of the page. It
isnt affecting anything as it also appears with other queries I run on this
page which do work. Does anyone know what causes it. I dont think I can
follow its suggestion for not displaying it as I dont think I can alter any
settings on my hosting companies server. if that is what its asking me to
do.

Warning: Unknown(): Your script possibly relies on a session side-effect
which existed until PHP 4.2.3. Please be advised that the session extension
does not consider global variables as a source of data, unless
register_global s is enabled. You can disable this functionality and this
warning by setting session.bug_com pat_42 or session.bug_com pat_warn to off,
respectively. in Unknown on line 0

THANKS Ian
"Miguel Cruz" <sp**@admin.u.n uwrote in message
news:spam-6605DF.14173407 082006@localhos t...
"mantrid" <ia********@vir gin.netwrote:
Im having problems working out why the following code does not work. I
dont
think its the sql as the error occurs on the first update which ever one
is
put there ($q1 or $q2). Ive swapped then around to test this.
Help greatly appreciated

The error is Unknown column 'A' in 'field list'
but there is no field 'A'. im thinking that the 'A' may be first letter
of
the word Array, as if it is using this as a variable, but i dont know
how.


$commindexarray =$_POST['commindex'];
$catarray=addsl ashes($_POST['category']);
$commarray=adds lashes($_POST['comm']);
$availarray=$_P OST['avail'];
$delarray=$_POS T['del'];

if($delarray==' '){
for ($i = 0; $i < count($comminde xarray); $i++){
$currtime=date( 'YmdHis');
$q2 ="UPDATE usercomms SET typeid={$catarr ay[$i]} WHERE userid=
".$_SESSION['userid']." AND commindex ={$commindexarr ay[$i]}";//
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry, there was a problem updating. Try
again.<br><br>E rror - 1 '.count($delarr ay). mysql_error().' </span>');
$q="UPDATE comments SET typeid={$catarr ay[$i]},
comment='{$comm array[$i]}',
available={$ava ilarray[$i]}, timestp='$currt ime', globalavail=0 WHERE
commindex={$com mindexarray[$i]}";//
$updatecomm = mysql_query($q) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');

}
}

PHP is not Perl. If you call addslashes() on an array, it treats it as a
string, which means it has the value "Array". Then, when $i == 0 and you
look at $catarray[$i], you get the first character, which is 'A'.

You need to iterate through your arrays and call addslashes on each
element individually. The most efficient way would be to move the
addslashes (or perhaps mysql_real_esca pe_string instead) inside the $i
for loop that you already have:

for ($i = 0; $i < count($comminde xarray); $i++)
{
$cat = intval($_POST['category'][$i]);
$comm = mysql_real_esca pe_string($_POS T['comm'][$i]);
$q = "update usercomms
set type = {$cat},
comm = {$comm}
where whatever";
}

miguel
--
Photos from 40 countries on 5 continents: http://travel.u.nu
Latest photos: Malaysia; Thailand; Singapore; Spain; Morocco
Airports of the world: http://airport.u.nu

Aug 7 '06 #5
"mantrid" <ia********@vir gin.netwrote:
Ive made the changes you suggested. I dont get any errors now but the
records are not updating. It is most puzzling. My updated code is below
*************** *************** *************** *************** *************** *
*****
$delarray=$_POS T['del'];//not needed in the sql of first two queries so isnt
in for loop

if(count($delar ray)==0){
for ($i = 0; $i < count($comminde xarray); $i++){
$currtime=date( 'YmdHis');
$cat = intval($_POST['category'][$i]);
$comm = mysql_real_esca pe_string($_POS T['comm'][$i]);
$avail =$_POST['avail'][$i];
$commindex = intval($_POST['commindex'][$i]);

$q2 ="UPDATE usercomms SET typeid=$cat WHERE userid=".$_SESS ION['userid']."
AND commindex =$commindex";//
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry, there was a problem updating. Try
again.<br><br>E rror - 1 '.count($delarr ay). mysql_error().' </span>');
$q="UPDATE comments SET typeid=$cat, comment='$comm' , available=$avai l,
timestp='$currt ime', globalavail=0 WHERE commindex=$comm index";//
$updatecomm = mysql_query($q) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');
}
}
I would print out $q and $q2 to ensure that $_SESSION['userid'] contains
what you thought it does.

miguel
--
Photos from 40 countries on 5 continents: http://travel.u.nu
Latest photos: Malaysia; Thailand; Singapore; Spain; Morocco
Airports of the world: http://airport.u.nu
Aug 7 '06 #6

*****
$delarray=$_POS T['del'];//not needed in the sql of first two queries so
isnt
in for loop

if(count($delar ray)==0){
for ($i = 0; $i < count($comminde xarray); $i++){
$currtime=date( 'YmdHis');
$cat = intval($_POST['category'][$i]);
$comm = mysql_real_esca pe_string($_POS T['comm'][$i]);
$avail =$_POST['avail'][$i];
$commindex = intval($_POST['commindex'][$i]);

$q2 ="UPDATE usercomms SET typeid=$cat WHERE
userid=".$_SESS ION['userid']."
AND commindex =$commindex";//
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry, there was a problem updating. Try
again.<br><br>E rror - 1 '.count($delarr ay). mysql_error().' </span>');
$q="UPDATE comments SET typeid=$cat, comment='$comm' , available=$avai l,
timestp='$currt ime', globalavail=0 WHERE commindex=$comm index";//
$updatecomm = mysql_query($q) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');
}
}

I would print out $q and $q2 to ensure that $_SESSION['userid'] contains
what you thought it does.
This I did and it is as expected,
Another thing I tried was to put the queries outside of the loop and
substitute the values from the arrays (which are also ok as i checked them
when i ran phpinfo()) with numbers as shown below
$q2 ="UPDATE usercomms SET typeid=1 WHERE userid=".$_SESS ION['userid']." AND
commindex =339";
$updateusercomm = mysql_query($q2 ) or die('<br><span class=RedWarnin g>Sorry,
there was a problem updating. Try again.<br><br>E rror - 1
'.count($delarr ay). mysql_error().' </span>');

$q="UPDATE comments SET typeid=1, comment='ggdsff gdsfg', available=1,
timestp='$currt ime', globalavail=0 WHERE commindex=339"; $updatecomm =
mysql_query($q) or die('<br><span class=RedWarnin g>Sorry, there was a
problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');

And this worked. so it looks like it is the loop or something

by the way miguel I like your photos. i to love travelling but havent put
mine on the web, something i'd like to do. much of mine are still on paper
so a lot of work to do.

Ian


Aug 7 '06 #7
>
This I did and it is as expected,
Another thing I tried was to put the queries outside of the loop and
substitute the values from the arrays (which are also ok as i checked them
when i ran phpinfo()) with numbers as shown below
$q2 ="UPDATE usercomms SET typeid=1 WHERE userid=".$_SESS ION['userid']."
AND
commindex =339";
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry,
there was a problem updating. Try again.<br><br>E rror - 1
'.count($delarr ay). mysql_error().' </span>');

$q="UPDATE comments SET typeid=1, comment='ggdsff gdsfg', available=1,
timestp='$currt ime', globalavail=0 WHERE commindex=339"; $updatecomm =
mysql_query($q) or die('<br><span class=RedWarnin g>Sorry, there was a
problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');

And this worked. so it looks like it is the loop or something

by the way miguel I like your photos. i to love travelling but havent put
mine on the web, something i'd like to do. much of mine are still on paper
so a lot of work to do.

Ian


ok getting closer. it is this bit

for ($i = 0; $i < count($comminde xarray); $i++){

i tested it with the following and it worked on those 100 records

for ($i = 0; $i <= 100; $i += 1){
ian
Aug 7 '06 #8
ok i got it
silly me
i hade commented out the setting of the variable

$commindexarray =$_POST['commindex'];
THANKS ALL for the help
"mantrid" <ia********@vir gin.netwrote in message
news:gt******** *********@newsf e6-win.ntli.net...
>

This I did and it is as expected,
Another thing I tried was to put the queries outside of the loop and
substitute the values from the arrays (which are also ok as i checked
them
when i ran phpinfo()) with numbers as shown below
$q2 ="UPDATE usercomms SET typeid=1 WHERE userid=".$_SESS ION['userid']."
AND
commindex =339";
$updateusercomm = mysql_query($q2 ) or die('<br><span
class=RedWarnin g>Sorry,
there was a problem updating. Try again.<br><br>E rror - 1
'.count($delarr ay). mysql_error().' </span>');

$q="UPDATE comments SET typeid=1, comment='ggdsff gdsfg', available=1,
timestp='$currt ime', globalavail=0 WHERE commindex=339"; $updatecomm =
mysql_query($q) or die('<br><span class=RedWarnin g>Sorry, there was a
problem updating some records. Try again.<br><br>E rror - 2
'.count($delarr ay).mysql_error ().'</span>');

And this worked. so it looks like it is the loop or something

by the way miguel I like your photos. i to love travelling but havent
put
mine on the web, something i'd like to do. much of mine are still on
paper
so a lot of work to do.

Ian


ok getting closer. it is this bit

for ($i = 0; $i < count($comminde xarray); $i++){

i tested it with the following and it worked on those 100 records

for ($i = 0; $i <= 100; $i += 1){
ian


Aug 7 '06 #9

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

Similar topics

0
9895
by: Jason | last post by:
Currently I have a number of html forms which loop through records in a database table. In order to be able to update the right record when the form is submitted, I've tacked number on to the field names, i.e.: PHP: echo '<input type="text" name="hat_color_'.$i.'" value="'.$currentRow.'"> <input type="text" name="favorite_food_'.$i.'" value="'.$currentRow.'">'; HTML: <input type="text" name="hat_color_0" value="brown"><input
0
1793
by: Phil | last post by:
Hi, I don't understand this strange behaviour: I compile this code : #include <Python.h> #include"Numeric/arrayobject.h" static PyObject *
3
2361
by: Bruno van Dooren | last post by:
Hi All, i have some (3) different weird pointer problems that have me stumped. i suspect that the compiler behavior is correct because gcc shows the same results. ---------------------------------------------- //example 1: typedef int t_Array; int main(int argc, char* argv)
9
1549
by: Kevin Hodgson | last post by:
I'm experiencing a strange Dataset Update problem with my application. I have a dataset which has a table holding a set of customer information records. (address, contact, info, etc.) I have a series of ComboBoxes (Client Number for selection), and text fields to show the other data bound to this Dataset.table If I change a value for the first client in the list, and press my update client button, the data is successfully updated to the...
16
3499
by: Ian Davies | last post by:
Hello Needing help with a suitable solution. I have extracted records into a table under three columns 'category', 'comment' and share (the category column also holds the index no of the record in a hidden field) I wish the user to be able to edit the data in the table, so I have extracted the records into hiddenfield, textareas, dropdown list and checkbox so that they can make changes. I named these elements as arrays and wish to run an...
4
2056
by: mantrid | last post by:
Im using arrays generated from my records displayed in a table on my site to update the corresponding records in a mysql database ie on the web page col1 col2 col3 1 2 2 1 6 2 7 4 which I post to next page as col1array col2array col3array problem is some
2
1237
by: Aggelos | last post by:
Hello, I am trying to export/import about 50.000 records in a csv file which a user can upload or downlaod from the browser. The problem is once I hit export Firefox comes with a dowload myscript.php window and IE just page cannot be found. It doesn't happen with less records. I tryied to google the problem but it doesn't seem to get me anywhere. Also I have memory problem because I create huge associative arrays that keep all those data...
0
1331
by: charmeda103 | last post by:
when i run my program it runs with no erorrs but the output screen is giving me strange results here is whats its giving me: CONFERENCE OVERALL RANK TEAM W-L % WINS MARGIN W-L % WINS MARGIN KSU 3-1 0.75 10.5 8-1 1.#IO 1.#J CAP 3-1 0.75 11.75 7-2 1.#IO 1.#J HEID 1-3 0.25 -4.00 3-4 ...
0
9425
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10002
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9869
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8883
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7415
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5312
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5449
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3575
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2816
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.