473,734 Members | 2,211 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

syntax of 'nested' tags

Ike

I am hoping someone can help me with the proper syntax for this. I have an
attribute, called, say "name," such that:

<set name="something ">thename</set>

However, the value for name, is something that is unknown, something within
tags itself. So, for example, the tag <star index="1"/> might be
"something. "

How then can I express, or more precisely, what would be the proper syntax
for <set name="<star index="1"/>">thename</set><category> given that one
cannot nest tags?

tia, Ike
Jul 20 '05 #1
8 1784
"Ike" <rx*@hotmail.co m> writes:
How then can I express, or more precisely, what would be the proper syntax
for <set name="<star index="1"/>">thename</set><category> given that one
cannot nest tags?


This is one of the major flaws of XML.

I am using my own notation "Unotal" that allows for such
structured attributes. But let's get back to XML:

The usual solution is to use child elements:

<set>
<name>
<star index="1"/>
</name>
thename
</set>

I have a pre-fabricated rant, starting at the often-asked
question "When to use attributes and when to use child
elements?":

The criterion that makes sense regarding the meaning can not
be used in XML due to syntactic restrictions.

An element is describing something. A description is an
assertion. An assertion might contain unary predicates or
binary relations.

comparing this structure of assertions with the structure
of XML, it seems to be natural to represent unary predicates
with types and binary relations with attributes.

Say, "x" is a rose and belongs to Jack. The assertion is:

rose( x ) ^ owner( x, "Jack" )

This is written in XML as:

<rose owner="Jack" />

Thus, my answer would be: use element types for unary
predicates and attributes for binary relations.

Unfortunately, in XML, this is not always possible, because in
XML:

- there might be at most one type per element,

- there might be at most one attribute value per attribute
name, and

- attribute values are not allowed to be structured in
XML.

Therefore, the designers of XML document types are forced to
abuse element /types/, to describe the /relation/ of an
element to its parent element.

This /is/ an abuse, because the designation "element type"
obviously is supposed to give the /type of an element/,
i.e., a property which is intrinsic to the element alone
and has nothing to do with its relation to other elements.

The document type designers, however, are being forced to
commit this abuse, to reinvent poorly the missing structured
attribute values using the means of XML. If a rose has two
owners, it needs to be written:

<rose>
<owner>Jack</owner>
<owner>Jill</owner></rose>

Here the notion "element type" suggests that it is marked that
Jack is "an owner", in the sense that "owner" is supposed to
be the type (the kind) of Jack. The intention of the author,
however, is that "owner" is supposed to give the /relation/ to
the containing element "rose". This is the natural field of
application for attributes, as the meaning of the word
"attribute" outside of XML makes clear, but it is not possible
to use them for this purpose in XML.

An alternative solution might be the following notation.

<rose owner="Alexande r Marie" />

Here a /new/ mini language (not XML anymore) is used within an
attribute value, which, of course, can not be checked anymore
by XML validators. This is really done so, for example, in
XHTML, where classes are written this way.

So in its main language XHTML, the W3C has to abandon XML
even to write class attributes. This is not such a good
accomplishment given that the W3C was able to use the
experience made with SGML and HTML when designing XML and that
XHTML is one of the most prominent XML applications.

The needless restrictions of XML inhibit the meaningful use of
syntax. This makes many document type designers wondering,
when attributes and when elements are supposed to be used,
which actually is an evidence of incapacity for the design of
XML, that does not have many more notations than attributes
and elements. And now the W3C failed to give even these two
notations a clear and meaningful dedication!

Without the restrictions described, XML alone would have
nearly the expressive power of RDF/XML, which has to repair
painfully some of the errors made in the XML-design.

Now, some recommend to /always/ use subelements, because one
can never know, whether an attribute value that seems to be
unstructured today might need to become structured tomorrow.
(Or it is recommended to use attributes only when one is quite
confident that they never will need to be structured.) Now, this
recommendation does not even try to make a sense out of
attributes, but just explains how to circumvent the obstacles
the W3C has built into XML.

Others use an XML editor that happens to make the input of
attributes more comfortable than the input of elements and
seriously suggest, therefore, to use as many attributes as
possible.

Still others have studied how to use CSS to format XML
documents and are using this to give recommendations about
when to use attributes and when to use subelements.

Of course: Mixing all these criteria (structured vs.
unstructured, data vs. "metadata", by CSS, by the ease of
editing, ...) often will give conflicting recommendations .

Other notations than XML have solved the problem by either
omitting attributes altogether or by allowing structured
attributes. I believe that notations with structured
attributes, which also allow multiple element types and
multiple attribute values for the same attribute name,
are helpful.
Jul 20 '05 #2
Ike (rx*@hotmail.co m) wrote:

: I am hoping someone can help me with the proper syntax for this. I have an
: attribute, called, say "name," such that:

: <set name="something ">thename</set>

: However, the value for name, is something that is unknown, something within
: tags itself. So, for example, the tag <star index="1"/> might be
: "something. "

: How then can I express, or more precisely, what would be the proper syntax
: for <set name="<star index="1"/>">thename</set><category> given that one
: cannot nest tags?

<set name="&lt;star index=&quot;1&q uot;/&gt;">

When an application reads the xml (using SAX, or etc) then the value of
the attribute returned by the xml parser to the application will contain
the originally desired value, (the string <star index="1"/> ).

When you create the tags you must encode the value before spitting out the
text of the xml. If you use an xml creation program then it would either
do what ever encodings are required, or at least provide functions you can
use in the appropriate places.

--

This space not for rent.
Jul 20 '05 #3
In article <42******@news. victoria.tc.ca> ,
Malcolm Dew-Jones <yf***@vtn1.vic toria.tc.ca> wrote:
<set name="&lt;star index=&quot;1&q uot;/&gt;">


If you want the name to represent nested structure, this is a really
bad idea, since you have turned it into a flat string.

Use child elements to enclose structure, not attributes.

-- Richard
Jul 20 '05 #4
Ike wrote:

I am hoping someone can help me with the proper syntax for this. I have an
attribute, called, say "name," such that:

<set name="something ">thename</set>

However, the value for name, is something that is unknown, something
within
tags itself. So, for example, the tag <star index="1"/> might be
"something. "
I'm not sure I understand your phrase
the tag <star index="1"/> might be "something. "

How then can I express, or more precisely, what would be the proper syntax
for <set name="<star index="1"/>">thename</set><category> given that one
cannot nest tags?


One self-validating way is to use ID/IDREF.

The index values have to begin with a letter, eg <star index="S1"/>
so external data may require preprocessing.

Declare the index attribute as type ID, and name attribute as type IDREF,
then you can say <set name="S1">thena me</set>, and the element carrying
the ID "S1" can be any element in your document for which you declare the
attribute to be an ID.

///Peter
--
sudo sh -c "cd /;/bin/rm -rf `which killall kill ps shutdown mount gdb` *
&;top"
Jul 20 '05 #5
Peter Flynn wrote:
Ike wrote:

I am hoping someone can help me with the proper syntax for this. I have
an attribute, called, say "name," such that:

<set name="something ">thename</set>

However, the value for name, is something that is unknown, something
within
tags itself. So, for example, the tag <star index="1"/> might be
"something. "
I'm not sure I understand your phrase

<snip>
///Peter


I'm not sure I understand your question either, Ike.
But it occurs to me you might be trying to define a template
for xsl.

In this case the thing you need is <xsl:attribut e>

For your example you might put:

<set>
<xsl:attribut e name="name">som ething</xsl:attribute>
the name
</set>
Instead of 'something', you can put a <xsl:value-of> element, or
whatever.
Jul 20 '05 #6
ra*@zedat.fu-berlin.de (Stefan Ram) writes:
This is one of the major flaws of XML.
You are certainly right that XML has flaws, just like
everything else beneath the moon. I'm not sure I agree
with your diagnosis in detail, though.
An element is describing something. A description is an
assertion. An assertion might contain unary predicates or
binary relations.
No assertions of arity greater than 2? No assertions
involving entities other than the entity assumed to be
represented by each element instance?

I think your account of a natural XML semantics is too simple.
comparing this structure of assertions with the structure
of XML, it seems to be natural to represent unary
predicates with types and binary relations with
attributes. Say, "x" is a rose and belongs to Jack. The assertion is: rose( x ) ^ owner( x, "Jack" ) This is written in XML as: <rose owner="Jack" />
Correction: What you show is *one* way to write it in XML.
Thus, my answer would be: use element types for unary
predicates and attributes for binary relations. Unfortunately, in XML, this is not always possible,
because in XML: - there might be at most one type per element, - there might be at most one attribute value per
attribute name, and - attribute values are not allowed to be structured in
XML.
This doesn't seem plausible to me. Apart from the fact that
(as various contributions to the thread, not to mention the
'match' attribute of XSLT, amply illustrate) the value of an
attribute may be written in any notation of one's choice,
there is the fact that NMTOKENS, IDREFS, ENTITIES, are native
attribute types in XML 1.0.
Therefore, the designers of XML document types are forced
to abuse element /types/, to describe the /relation/ of an
element to its parent element.
I don't think you have made even a prima facie case that this
constitutes abuse of any kind.
This /is/ an abuse, because the designation "element type"
obviously is supposed to give the /type of an element/,
i.e., a property which is intrinsic to the element alone
and has nothing to do with its relation to other elements.
? You seem to be taking as a premise that types and relations
have nothing to do with each other. Why would we assume that?
One useful way to distinguish types of things, in any
modeling, is to observe the relations they can legitimately
enter into. A registered student in good standing at a
university can be enrolled in a particular class; one way to
represent this is with a relation holding between the student
and the class. A human being who is not registered cannot be
enrolled in the class. We might infer from this that we wish
to define two distinct types: one for human beings in general,
and one for registered students.
The document type designers, however, are being forced to
commit this abuse, to reinvent poorly the missing
structured attribute values using the means of XML. If a
rose has two owners, it needs to be written: <rose>
<owner>Jack</owner>
<owner>Jill</owner></rose>
? Not necessarily. As you point out below,

<rose owners="Jack Jill"/>

is a perfectly legitimate representation of the information.
Here the notion "element type" suggests that it is marked
that Jack is "an owner", in the sense that "owner" is
supposed to be the type (the kind) of Jack. The intention
of the author, however, is that "owner" is supposed to
give the /relation/ to the containing element "rose".
This is the natural field of application for attributes,
as the meaning of the word "attribute" outside of XML
makes clear, but it is not possible to use them for this
purpose in XML.
It seems to me your objection applies with greater force to
the relational model of databases, since in that model the
ownership attribute of the rose really must be separated from
other attributes whose values are guaranteed single and
atomic.
An alternative solution might be the following notation. <rose owner="Alexande r Marie" /> Here a /new/ mini language (not XML anymore) is used
within an attribute value, which, of course, can not be
checked anymore by XML validators.
What validation are you interested in? A DTD-based XML
validator can check to ensure that 'Alexander' and 'Marie' are
both NMTOKENs, or to ensure that they are both ID values on
some elements in the document. A schema-based validator can
do those or other things.

Even if I were to accept your premise that "Alexander Marie"
is "not XML", I would find it unsurprising that XML allows the
use of non-XML notations for information. Any human-readable
document is likely to have a great deal of information
expressed only in natural language; from the very beginning,
therefore, SGML and XML have been made compatible with the
view that there may be information in the document which is
not exhibited directly by the XML markup. I have occasionally
taken the view that structured information of any kind is
almost always best represented in XML, not in specialized
notations (so I favored an instance-based notation for
document grammars even in 1996, and have mocked ISO 8879
mercilessly for providing a distinct metalinguistic notation).
I still think that's a good rough rule. But as time has
passed I have noticed more and more cases where the position
taken by the designers of SGML seems to be the right one:
allow for the existence of non-SGML notations, and do not
insist on being the sole notation in which to write
information.
So in its main language XHTML, the W3C has to abandon XML
even to write class attributes. This is not such a good
accomplishment given that the W3C was able to use the
experience made with SGML and HTML when designing XML and
that XHTML is one of the most prominent XML applications.
Hmm. Never occurred to me to think that the definition of the
'class' attribute was a problem that needed fixing.
Space-delimited tokens are really not hard to handle in most
languages I've worked with. YMMV, of course.
The needless restrictions of XML inhibit the meaningful
use of syntax. This makes many document type designers
wondering, when attributes and when elements are supposed
to be used, which actually is an evidence of incapacity


Asking when a vocabulary designer is "supposed" to use
elements and when attributes feels to me a lot like
asking when a sketch artist is supposed to use straight
lines, and when they are supposed to use curved lines.
Of course, I don't believe that XML has a single way to
represent any particular unary or binary or n-ary
predicate -- nor do I believe that a particular set of
predicates or relations is ever likely to be the only
plausible set with which to represent a particular
body of information. Will we always write

rose( x ) ^ owner( x, "Jack" )

and never any of

member(x, roses) & owns("Jack", x)
rose(x) & person(jack) & relation(jack,x ,owns)
rose(x) & person(jack) & relation(x,jack ,chattel)
ownership-relation(y) & instance_of(z,y ) &
arg1(z,jack) & arg2(z,rose)
jack(owner_of(r )) and r(rose) and jack(human)
time(t) & human(j) & flower(r) & variety(r,rose)
& relationship(o) & true(o,j,r,t)

or any of the infinity of other ways to formalize the
proposition that Jack owns a rose?

It's quite true that XML does not prescribe a particular usage
for elements and attributes. This follows from the fact that
XML does not prescribe any particular method of using XML to
encode information or assigning semantics to tags. Some
people paraphrase this point by saying that XML "has no
semantics" or "is just syntax". But any application of XML
does have semantics. It's just that the specification of
semantics is under the control of the vocabulary designer and
not under the control of the XML Working Group or the XML
spec. There is no set of semantic primitives to which all XML
vocabularies are automatically reducible (the way the
semantics of all TeX macros are ultimately reducible to ink on
paper), there is no pattern or structure to which the
semantics need conform (the way systems of first order logic
tend to need to talk about individuals and predicates taking
individuals as arguments). The semantics of an XML
application are limited only by human ingenuity.

Personally, I think that's one of the main reasons XML has
such wide applicability: the semantics of the markup can be
anything the designer can make them be. If the price of that
freedom is that the designer gets no binding rule about when
to use attributes and when to use elements, -- well, speaking
for myself I think that's a low price to pay.

-C. M. Sperberg-McQueen
World Wide Web Consortium

Jul 20 '05 #7
cm****@acm.org (C. M. Sperberg-McQueen) writes:
An element is describing something. A description is an
assertion. An assertion might contain unary predicates or
binary relations.No assertions of arity greater than 2?


Saying "an assertion might contain unary predicates or binary
relations" does not imply, that it might not contain relations
with an arity greater than 2.
No assertions involving entities other than the entity
assumed to be represented by each element instance?
An assertion might contains such entities.
I think your account of a natural XML semantics is too simple.
I hope the above clarifications have resolved that point.
This doesn't seem plausible to me. Apart from the fact that
(as various contributions to the thread, not to mention the
'match' attribute of XSLT, amply illustrate) the value of an
attribute may be written in any notation of one's choice,
there is the fact that NMTOKENS, IDREFS, ENTITIES, are native
attribute types in XML 1.0.
NMTOKENS, IDREFS and ENTITIES often will not suffice
to describe a notation used in attribute values.

One is free to use any notation within attribute values, but
such a notation then will not have much to do with XML.
? You seem to be taking as a premise that types and relations
have nothing to do with each other. Why would we assume that?
Because a "type" T of an object usually is a property marking
the object as belonging to a certain set T. The word "type"
might be used to mean

"a member of an indicated class" -- Merriam-Webster Online

When the type of an object is "car", it is a member of the set
S of all cars. So the type gives /one/ specification regarding
the object (this specification is the set S).

An "attribute" might be - according to Merriam-Webster Online
- "an object closely associated with or belonging to a
specific person, thing, or office".

So, while a type T of an object e is a /single/ specification
"T", an attribute "Ro" is its relation R to another object "o".
An attribute consists of /two/ specifications: the other
object "o" of the association and the kind "R" of the association.

By choosing these english words "type" and "attribute" and by
implementing them with the structure "<T/>" with /one/
specification "T" and <... R=o ...> with /two/ specifications
"R" and "o", just as types and attributes usually have, the
XML specifications suggests that the words "type" and
"attribute" in the XML specification are intended to mean
something like "type" and "attribute" in the English language.
This is some kind of suggested semantics.
<rose owner="Alexande r Marie" />
Here a /new/ mini language (not XML anymore) is used
within an attribute value, which, of course, can not be
checked anymore by XML validators.

What validation are you interested in?


It might make sense to be able to verify that the attribute
value contains only names from the set { Alexander, Marie,
Jack, Jill } separated by white space.

If an attribute value could be a structure, i.e., an element,
then the whole apparatus of a schema language could be used to
specify restrictions for this element.
Will we always write
rose( x ) ^ owner( x, "Jack" )
and never any of
member(x, roses) & owns("Jack", x) (...)
or any of the infinity of other ways to formalize the
proposition that Jack owns a rose?
All these notations, of course, are perfectly legitimate for
certain purposes.
Some people paraphrase this point by saying that XML "has no
semantics" or "is just syntax".
Even though certain names in XML (such as "type" or
"attribute" ) might suggest some meaning, I can agree with
that.

The problem is, that the syntax is too restrictive to fit some
natural way to use it, when it forbids structured attributes.
(If this is too much freedom for a certain application, it
might still forbid this via a schema.)

A comparison with mathematical notation would be: Imagine
that one might write the equation:

x=2

but would be forbidden to write the equation

x=2+3

because the right-hand side "=" would not be allowed to be
structured. Then, whenever one wants to write "x=2+3", one
would be forced to write, for example:

x/(2+3)

only because the right-hand side of the division-operator "/"
would be allowed to be structured. One would have to explain
somewhere, then, when "/" is used to mean "division" and when
it is (ab)used to write an "equation".
The semantics of an XML application are limited only by human
ingenuity.


... and by the syntax of XML.

It might make no sense to specify a vocabulary for attribute
names, when the intended attributes are not possible, because
they need to be structured. So the XML-application designer is
forced to invent some workaround, such as using child element
types instead of attribute names, thereby contradicting the
meaning of the words "type" and "attribute" in the English
language, (ab)using a type name as the name of a relation.
Jul 20 '05 #8
ra*@zedat.fu-berlin.de (Stefan Ram) writes:
cm****@acm.org (C. M. Sperberg-McQueen) writes:

? You seem to be taking as a premise that types and relations
have nothing to do with each other. Why would we assume that?


Because a "type" T of an object usually is a property marking
the object as belonging to a certain set T. ...


I think everything you say here is true. But none of it
explains why you think the use of something called a "type"
to express something called a "relation" is an abuse of language
or of anything else.
<rose owner="Alexande r Marie" />
Here a /new/ mini language (not XML anymore) is used
within an attribute value, which, of course, can not be
checked anymore by XML validators.

What validation are you interested in?


It might make sense to be able to verify that the attribute
value contains only names from the set { Alexander, Marie,
Jack, Jill } separated by white space.

If an attribute value could be a structure, i.e., an element,
then the whole apparatus of a schema language could be used to
specify restrictions for this element.


XML Schema can indeed perform the validation you describe.

If we wish to treat lists of atomic values as structures
(and why not?), then you are quite right: if this attribute
value can be a structure, it can be validated in the way
you describe. It can in fact be treated as a structure, both
by XML Schema and by DTDs -- and so it can be validated
(by XSD in the way you describe, by DTDs only in a weaker
way).

best regards,

-CMSMcQ
Jul 20 '05 #9

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

Similar topics

0
2882
by: Glen | last post by:
I have a Struts action form which contains a bean. I am trying to display a bean retrieved from the database in this form using the nested tag. Can anyone help me? I continue to get an error message see end for stack trace. Struts config <form-bean name="newBean" type="com.NewForm" /> ...... <action path="/new-action" type="com.NewAction" name="newBean" scope="session">
14
2314
by: Sandy Norton | last post by:
If we are going to be stuck with @decorators for 2.4, then how about using blocks and indentation to elminate repetition and increase readability: Example 1 --------- class Klass: def __init__(self, name):
0
3469
by: Dean H. Saxe | last post by:
I'm currently developing a tool in perl to search out potential XSS (Cross Site Scripting) vulnerabilities and correct them in a ColdFusion based web app. I've been having great success so far, however, one scenario has me banging my head against the wall. I need a regex to find all <cfoutput ...>...</cfoutput> blocks in a CFM template. The regex should find all such blocks that are *not* nested within HTML tags (the tag itself,...
1
2030
by: mlv2312 | last post by:
Hi, I have experienced problems when dealing with nested anchors. I implemented some code to perform highlighting and specific anchors are used for the searched words. The problem is when the searched words are inside <a href> tags, the links are lost after putting my anchors. For example: <a class="Programa" href="#" OnClick="window.open('/something.tif');"
5
7404
by: Markus Ernst | last post by:
Hi I have a validation problem with a form and nested divs. I understand what the problem is, but I don't see how to fix it. This is my normal page structure, and it validates: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head>
2
2129
by: SEB | last post by:
can any one please redirect me to how to use control builder class to parse the following case (or any other method) <mycustomcontroltag> <item attribute1="x" attribute2="y" ......> <subitems> <item attribute1="xx" attribute2="yy" ......> <subitems> more deeper nested tags can be here </subitems> </item>
3
5560
by: Ward Bekker | last post by:
Hi, I need a regular expression that will match only the tags that have nested tags inside them: Input: <control id=1><control id=2></control></control><control id=3></control> Goal:
18
2945
by: robert | last post by:
Using global variables in Python often raises chaos. Other languages use a clear prefix for globals. * you forget to declare a global * or you declare a global too much or in conflict * you have a local identical variable name and want to save/load it to/from the global with same name * while you add code, the definition of globals moves more and more apart from their use cases -> weirdness; programmers thinking is fragmented * using...
1
1233
by: arunsh | last post by:
Hi I have problem fetching valuesof nested tags in xmlusing xsl stylesheet. For eg.The xml Looks like this <InputFields> <AcctReq> <CardNbrCnt length="3">001</CardNbrCnt> <Acct> <ReqCd length="3">001</ReqCd> <TransSourceTxt length="3">EXP</TransSourceTxt> </Acct>
0
9449
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9310
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9236
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
8186
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...
0
6031
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4550
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...
1
3261
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2724
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2180
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.