Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok dito

Die dump mo if merong kang nakukuhang data.
dd(varname);
eg. dd($result);
vardump naman sa raw php
vardump(varname);
eg. vardump($result);

- - - Updated - - -

Mga Mam/Sir,

Tanong ko lang kasi kung ano ba mga demand ngayon satin sa web development kasi nag aaral ako ngayon and wala akong idea kung ano nangyayari sa IT industry sa pinas, before sana ako maka graduate mag aaral ako ng mga mostly demand na skills ngayon. Goal ko po kasi maging Full-stack developer and may roadmap na ko kung ano mga aaralin ko pero need ko lang din ng idea kung ano ganap sa real life work ng mga IT.

Learn Java, Swift, C++, C#, Python, basic database basta matutunan mo ang joining, Php and CSS.
Saka mas maganda sumali ka sa mga competitions like Hackaton mas marami kang matutunan at tips na ibibigay sayo sa mga experts.
Lastly "Wag kang tamad" hindi uunahin ang laro or pagtulog. Saka iwasan ang pagtitikol ,mawawalan ka ng gana mag codes. Maghanap ka ng jowa mas nakaka inspire if merong sumusuporta sayo kahit ang hirap hirap ng ginagawa mo.
 
Last edited:
Re: Mga Tanong tungkol sa PHP, CSS, jquery, HTML at MySQL pasok D2

Hi Mobilarians and to all!

Seeking advice.

I am a Nursing grad. 6 yrs. in retail and sales. Basically anti social po ako, hated speaking and selling but concurred due to nature of work. Scheming to shift working online co'z of the pandemic arising in the globe.

Hingi lang po sana akong advice/thoughts sa gagawin kong shift.

dalawa lang po gusto ko.

#1. Gusto ko pong aralin ang web development. actually wala pa po talaga akong idea kung ano ibig sabihin niya front end, back end, full stack etc. parang ibang linguahe bago pa talaga sakin. Willing to learn and study for months or year as long as sureball yung tatahakin kong karera.

#2. Overall VA non voice Ecommerce/shopify/amazon order and return fullfilment, product listing, more on backend etc.

Ano pong advice/thoughts niyo regarding this.

#1 po ba or #2?

can you share links also for bootcamp/training/courses.

Hope matulungan niyo po ako.

Thank you so much!
 
Meron po ba dito may kayang ibypass ung usb key certificate sa website . Or may kayang mang hack ng usb key ?
 
Last edited:
May tanong po ako. I have pre-made website na nahanap ko lang. Paano po kaya integration nito. Sana po matulungan nyo ako, sa last step na po kase ako kaso di ko ma gets or mahanap kelangan na files dito. I am using PHP Script sa main domain. And gusto ko gamitin yun to integrate the script sa WP ko po. Thanks! @

nitzgamz


1670936357658.png
 
magpapaturo po sana ako kung paano magdisplay ng proper ang website sa mga smartphone meaning sa css po madetect yun display if via smartphone or sa desktop/laptop browser ang enduse kasi hindi magdisplay ng maayos kapag sa mga smartphone magbrowse
 
magpapaturo po sana ako kung paano magdisplay ng proper ang website sa mga smartphone meaning sa css po madetect yun display if via smartphone or sa desktop/laptop browser ang enduse kasi hindi magdisplay ng maayos kapag sa mga smartphone magbrowse
madaming ways para gawin to. either mag deploy ka ng mobile version design sa ibang domain like m.domain.com for mobile tpos domain.com sa desktop or pwede sa isang domain lang tpos use ka ng media queries sa css
use flex at grid for easy responsive design.
 
magpapaturo po sana ako kung paano magdisplay ng proper ang website sa mga smartphone meaning sa css po madetect yun display if via smartphone or sa desktop/laptop browser ang enduse kasi hindi magdisplay ng maayos kapag sa mga smartphone magbrowse

Ito ang code. Buti na lang at kaka code ko lang ngayon ng web. Swerte mo.

CSS:
/* Add a responsive viewport to your webpage */
<meta name="viewport" content="width=device-width, initial-scale=1">

/* Make the container element responsive */
.container {
  width: 100%;
  max-width: 1200px; /* Set a maximum width for the container */
  margin: 0 auto; /* Center the container on the page */
  padding: 0 15px; /* Add some padding for the container */
}

/* Make the images in the grid responsive */
.grid img {
  width: 100%; /* Set the width to 100% */
  height: auto; /* Set the height to auto to maintain the aspect ratio */
}

/* Make the grid items responsive */
.grid-item {
  float: left; /* Float the grid items to the left */
  width: 25%; /* Set the width to 25% */
  text-align: center; /* Center the text inside the grid item */
  padding: 10px; /* Add some padding for the grid item */
}

/* Make the grid responsive */
@media (max-width: 600px) {
  .grid-item {
    width: 50%; /* Set the width to 50% on small screens */
  }
}

@media (max-width: 400px) {
  .grid-item {
    width: 100%; /* Set the width to 100% on extra small screens */
  }
}
 
Hello po, Plan ko po gawing web-base yung payroll system namin sa office na naka-visual basic. Gusto ko po sana imigrate sa Core PHP MVC with js ajax, xampp po database ko. Any tips and advice po sa mga dapat kung gawin or iwasan? may basic knowlege po sa php and javascript. Thanks po...
 
Guys meron po ba kayo alam na online courses na weekend lang yung class? Gusto ko kasi mag enroll para sa web development.
 
mga sir good pm pwde po ba makahingi ako ng sample file kung pano makagawa ng player lives gamit html, css, js
 
Ayos may thread pa la dito specifically para sa PHP+MySQL... Sana marami dito gumagamit ng Laravel na framework. Ang dami kasi gusto kung itanong...
 
mga sir good pm pwde po ba makahingi ako ng sample file kung pano makagawa ng player lives gamit html, css, js
JavaScript:
class Player {
  constructor(lives) {
    this._lives = lives; // Use a private property for lives
  }

  get lives() { // Add a getter to access the lives property
    return this._lives;
  }

  loseLife() {
    this._lives--; // Use the private property in the method
  }

  isAlive() { // Add a method to check if the player is alive
    return this._lives > 0;
  }
}

// Usage example:
let player = new Player(3); // Create a player with 3 lives
console.log(player.lives); // Output: 3

player.loseLife(); // Reduce a life
console.log(player.lives); // Output: 2

console.log(player.isAlive()); // Output: true

player.loseLife();
player.loseLife();
console.log(player.isAlive()); // Output: false
 
hello guys ask lng sana aku about getting the code of the font on a web page...sana mrun mag help.....thank po.....
 
hello guys ask lng sana aku about getting the code of the font on a web page...sana mrun mag help.....thank po.....
import ka sa google. Napaka daming fonts don na pwede ilagay sa tailwind at css
 
Back
Top Bottom