₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,045 members, 8,420,039 topics. Date: Thursday, 04 June 2026 at 10:03 AM

Toggle theme

WebMind's Posts

Nairaland ForumWebMind's ProfileWebMind's Posts

1 2 3 4 5 6 (of 6 pages)

WebmastersRe: Is Web Development Still Profitable by WebMind: 5:08pm On Apr 21, 2020
I am new and hungry for experience anyone wanting a collabo is free to approach.
WebmastersRe: Should Blogs Be Made With HTML & CSS Or With Wordpress? by WebMind: 4:51pm On Apr 21, 2020
CapedBaldy:
I want to know if it's a good idea to create a blog using HTML/CSS. If I do that will I have to edit the code anytime I want to post new content?
Yes you will have to edit codes to add contents.
Wordpress is better but you can host your HTML/CSS based blog for free on google drive like I did here:

https://webmind.imfast.io/no-script2/index.html
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 4:47pm On Apr 21, 2020
fineboynl:
do you have an idea. how fast Google can index a domain?
no.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:26pm On Apr 17, 2020
fineboynl:
it's 500 each. 1k
Yes. Confirmed. Thanks.


In case you have any other such tasks, I am available.
I do very clean designs. I have two as topics. if you view my topics they are there.
Again, Thanks.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:24pm On Apr 17, 2020
N1000. Thanks.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:23pm On Apr 17, 2020
fineboynl:
my php.
You should have told of the error you said mine generated. I know that my own i s very easy and accurate. Probably some environment variable mismatch errors.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:19pm On Apr 17, 2020
fineboynl:
the problem was from the php. I later found out after so many try and error. it was exhausting
mine or yours?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:18pm On Apr 17, 2020
fineboynl:
sent
N500 ?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:08pm On Apr 17, 2020
fineboynl:
I mean for Google to make a domain show up in search. I put a domain to Google webmaster more then 24 hours now it still not showing up on search. what network is that number I want to buy directly to it.
Airtel. Make it double that amount.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 7:19pm On Apr 17, 2020
fineboynl:
some how I managed to do it. you really tried. I would like to send you 500 airtime for sub. how do I get it across.

also do you know how to plus domains on Google search?
What is the bold about.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 7:17pm On Apr 17, 2020
fineboynl:
some how I managed to do it. you really tried. I would like to send you 500 airtime for sub. how do I get it across.

also do you know how to plus domains on Google search?
You sure you didn't use my own? just reach on the number in my profile. Whatsapp.

I know what I provided works just that I later became involve with the other guy who came along on the topic and my attention was divided.

I was suppose to ask for the error you said mine gave, but even you didn't bother showing it to me.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 11:28am On Apr 17, 2020
CotenantNIG:
can i have your whatsapp line please
Are you still interested or not?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 10:47am On Apr 17, 2020
fineboynl:
your php brings error with my codes.
you have indeed tried. but it didn't work with it
Which code is your code? remind me please.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 10:07am On Apr 17, 2020
fineboynl:
I didn't use you php. I have php script it just the HTML. what I'm looking for is that it should be in order. and the airplane on the last data which I can sort by time. but the problem is for them to be in order
The HTML doesn't fall from heaven, it has to be generated somewhere and that's what the solutions I uploaded are for. If you didn't use what I gave you then how I know what to modify, since the one you are using isn't here?
Just listen to yourself sir.

Incase you don't know, the whole process starts from the DB, the PHP uses the data from DB to generate a valid HTML that is passed to client or browser. The HTML also contains CSS that adds styling to the HTML. Styling or CSS controls things like Color, background, text size, rounded borders, borders, shadows and aesthetics generally.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 9:55am On Apr 17, 2020
You want me to write the PHP in such a way it will only have space for aeroplane logo in the last item. I will do that and get back to you, but first which of the three solutions I posted did you modify to get this output? I need to know so I know the one to adjust.


Second issue I can see is the the issue of environment. The environment you are writing the code in has some CSS code that's forcing the items to display anyhow the way they appear on your uploaded screenshots. I will try and do that but that will be difficult only because I don't have direct access to your server(phpmyadmin set up). Get it?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:50am On Apr 17, 2020
If detection of first and/or last items on a array/list is what you are after, the logic below will work dynamically for any array/list, but your explanations are just too ambiguous so far.


$i = 0;
$len = count($array);
foreach ($array as $item) {
if ($i == 0) {
// Code for the first item here.
} else if ($i == $len - 1) {
// code for the last item here
}
// …
$i++;
}


Explanation:
Variable $i is set at 0(zero) for a start and will increase as your iteration runs through the items.
$len is the length of the array and will help you know the last item on the array or list(in your case, Locations are the items). Inside the foreach statement. If you are not clear just let me know.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:36am On Apr 17, 2020
fineboynl:
the listing was not in order. it scattering to left side. and all data has the plane icon
How do you expect me to understand what you are talking about without a picture?

You said you had the locations in chronological order so why are they scattering. Can you post your HTML output or at least attach them here?

Please try and be clear with what you want on time.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 12:00am On Apr 17, 2020
fineboynl:
the data from table are fighting for dominance at the top spot. unlike when I list input list of <li> there

I don't know if you understand?
don't.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 11:19pm On Apr 16, 2020
fineboynl:
it didn't work oh. this tag is not what I think should be there. <ul><li>
In my post or the output in your HTML output in your browser?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 4:47pm On Apr 16, 2020
fineboynl:
sorry bro. I have been busy since morning. let me check it now.
OK. Do and get back pls. I uploaded 2 in the post as attachment based on the php one you posted here. then added the one in plain text at the last minute.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 4:46pm On Apr 16, 2020
CotenantNIG:
i tried calling you yesterday number didnt go through
It has been on since yesterday. right now it is on.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 9:19am On Apr 16, 2020
fineboynl:
yes, the right HTML to quarry a list data record from table with track code number and sorted by date and time. that's all.
Please have you seen the one I write?
Please let me know if I need more adjustment to it or not.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 9:17am On Apr 16, 2020
CotenantNIG:
i need help with a result sheet display for a school management script
Where is the result sheet data?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind:
the solution




<div id="table">
<div class="container out">
<div class="container in">
<h5>From what you posted, here is the PHP that I think can give you what you want ( Use control+U to view the HTML on PC )</h5>
<ul class="">
<?php
$locations = get_locations_details();

foreach($locations as $loc)
{
$current_city = $loc['city'];
$date = $loc['date'];
$location_message = $loc['message'];
?>
<li class="">
<h4 class="title"> <?php echo $current_city; ?> </h4>
<span><strong> <?php echo $date; ?> </strong> at <?php echo $date; ?> </span><br>
<p> <?php echo $location_message; ?> </p>
</li>
<?php
}
?>
</ul>
</div>
</div>
</div>
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 10:13pm On Apr 15, 2020
CotenantNIG:
i need help with a result sheet display for a school management script
OK. what is it like. Though I am quite exhausted with the back and forth of fineboynl, It is never to early to start thinking about it.
As for the whatsapp contact, it isn't up right now, why not text me on the number in my user account. II heard the networks are giving free SMS for the restriction of movement, so use that for now please and bare with me.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 10:10pm On Apr 15, 2020
@fineboynl, I did something in HTML and zipped it. I will try and upload it now or in midnight. I hope it solves the challenge.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 9:08pm On Apr 15, 2020
CotenantNIG:
can i have your whatsapp line please
Hello sir/ma, how may I help?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 9:07pm On Apr 15, 2020
CotenantNIG:
can i have your whatsapp line please
Hello sir/ma, how may I help?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:31pm On Apr 15, 2020
If what you want is a HTML that looks like that first pix you uploaded then I will go into my system (PC) and try to come up with your request (according to what I understand). I just I fully understand what you want before going ahead to write HTML.

What I am about to do is take the HTML you displayed and write mine that can render like it. Please correct me if I am wrong.
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:21pm On Apr 15, 2020
fineboynl:
yes
You should have stated that since now. You never mentioned it. Even now that you are, the details you are supplying isn't complete. What do you have on ground?
Do you have the list of locations(Abuja, sortinghub, Lagos, pH) in chronological order already?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 8:09pm On Apr 15, 2020
fineboynl:
yes it's on the last one. the problem is to query the date from table. and list them in that order. this type of table placement to read from DB is my problem.
Seem like you want the locations sorted by the date in chronological order then displayed on the HTML in that order and finally the last location gets an aeroplane logo? Right?
WebmastersRe: 1.5k Airtime For Anyone That Can Help Me With This Database Table html code by WebMind: 7:56pm On Apr 15, 2020
fineboynl:
yes that very script put it on the last. by default.

I am nor too good with HTML.

if you look at the code they are just <ul> and <li>

when I want is reading from MySQL dB. and when a new location is added to the database it join the list.

I don't know why you finds it hard to understand
Take a look at you diagram ( the last one ). You say you want plane logo on last item( which I believe is Abuja) and it already there.
But going by your last comment, I will suggest this :





For(Location L : LocationList){

<li>
<h4 class="title"> L.name </h4>
<strong>L.date</strong> L.time <br>
<p> L.comment </p>
</li>

}



From what I understand in you post far that what you need.

1 2 3 4 5 6 (of 6 pages)